pornfilm.qsrc 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  1. # pornfilm
  2. menu_off = 1
  3. if $ARGS[0] = 'pornactor':
  4. if pfactor ! 50:
  5. num = pfactor
  6. :actorloop
  7. akrand = rand(1,10)
  8. if akrand = 1:
  9. $pakter[num] = 'Alexei'
  10. $pakterID[num] = 'A193'
  11. elseif akrand = 2:
  12. $pakter[num] = 'Seryozha'
  13. $pakterID[num] = 'A194'
  14. elseif akrand = 3:
  15. $pakter[num] = 'Egori'
  16. $pakterID[num] = 'A195'
  17. elseif akrand = 4:
  18. $pakter[num] = 'Ignat'
  19. $pakterID[num] = 'A196'
  20. elseif akrand = 5:
  21. $pakter[num] = 'Syoma'
  22. $pakterID[num] = 'A197'
  23. elseif akrand = 6:
  24. $pakter[num] = 'Vasya'
  25. $pakterID[num] = 'A198'
  26. elseif akrand = 7:
  27. $pakter[num] = 'Borya'
  28. $pakterID[num] = 'A199'
  29. elseif akrand = 8:
  30. $pakter[num] = 'Danek'
  31. $pakterID[num] = 'A200'
  32. elseif akrand = 9:
  33. $pakter[num] = 'Pepik'
  34. $pakterID[num] = 'A201'
  35. elseif akrand = 10:
  36. $pakter[num] = 'Alusha'
  37. $pakterID[num] = 'A202'
  38. end
  39. if num < pfactor:
  40. num2 = pfactor
  41. :actorloop2
  42. if $pakter[num] = $pakter[num2]:jump 'actorloop'
  43. num2 -= 1
  44. if num2 > num:jump 'actorloop2'
  45. end
  46. if aksex[akrand] = 0:aksex[akrand] = 1 & guy += 1
  47. num -= 1
  48. if num > 0:jump 'actorloop'
  49. end
  50. end
  51. if $ARGS[0] = 'pornactress':
  52. if pfactor ! 50:
  53. num = pfactor
  54. :actressloop
  55. akrand = rand(1,10)
  56. if akrand = 1:
  57. $paktress[num] = 'K'
  58. $pactressID[num] = 'A207'
  59. elseif akrand = 2:
  60. $paktress[num] = 'Elli'
  61. $pactressID[num] = 'A234'
  62. elseif akrand = 3:
  63. $paktress[num] = 'Juli'
  64. $pactressID[num] = 'A235'
  65. elseif akrand = 4:
  66. $paktress[num] = 'Tina'
  67. $pactressID[num] = 'A236'
  68. elseif akrand = 5:
  69. $paktress[num] = 'Alli'
  70. $pactressID[num] = 'A237'
  71. end
  72. if num < pfactor:
  73. num2 = pfactor
  74. :actressloop2
  75. if $paktress[num] = $paktress[num2]:jump 'actressloop'
  76. num2 -= 1
  77. if num2 > num:jump 'actressloop2'
  78. end
  79. if aksex[akrand] = 0:aksex[akrand] = 1 & girl += 1
  80. num -= 1
  81. if num > 0:jump 'actressloop'
  82. end
  83. end
  84. if $ARGS[0] = '1':
  85. if rand(0,1) = 0: pornhj += 1
  86. pornbukk += 1
  87. pfType = 0
  88. *clr & cla
  89. gs 'fame', 'city', 'porn', 10
  90. minut += 30
  91. gs 'stat'
  92. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  93. 'To the side stands the actor <<$pakter[1]>>, stroking his member.'
  94. act 'Undress and start':
  95. *clr & cla
  96. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/hj.mp4"></video></center>'
  97. '<<$pakter[1]>> sits on the bed. You kneel beside him, take his penis in your hand and begin to stroke it.'
  98. gs 'arousal', 'hj', 30, 'exhibitionism'
  99. gs 'stat'
  100. act 'Jerk him off':
  101. *clr & cla
  102. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/hjcumontits.mp4"></video></center>'
  103. '<<$pakter[1]>> begins to caress your tits as you continue to jerk his cock. Soon, his hot cum is squirting over your tits.'
  104. gs 'cum_call', 'breasts', $pakterID[1], 1
  105. gs 'arousal', 'hj', 5, 'exhibitionism'
  106. gs 'arousal', 'end'
  107. gs 'stat'
  108. act 'Take a shower': gt 'pornstudio', 'shower'
  109. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  110. end
  111. end
  112. end
  113. if $ARGS[0] = '2':
  114. if rand(0,2) = 0: pornhj += 1
  115. if rand(0,1) = 0: pornbj += 1
  116. pornswall += 1
  117. if rand(0,2) = 0: pornbukk += 1
  118. pfType = 0
  119. *clr & cla
  120. gs 'fame', 'city', 'porn', 12
  121. minut += 30
  122. gs 'stat'
  123. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  124. 'On the side stands the actor <<$pakter[1]>>, stroking his member.'
  125. act 'Undress and start':
  126. *clr & cla
  127. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/hj.mp4"></video></center>'
  128. '<<$pakter[1]>> sits on the bed. You kneel beside him, take his penis in your hand and begin to stroke it.'
  129. gs 'arousal', 'hj', 30, 'exhibitionism'
  130. gs 'stat'
  131. act 'Blow him':
  132. *clr & cla
  133. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj.mp4"></video></center>'
  134. 'His cock now rock hard, you take it into your mouth and begin sucking his tip.'
  135. gs 'arousal', 'bj', 5, 'exhibitionism'
  136. gs 'stat'
  137. act 'Keep sucking':
  138. *clr & cla
  139. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/deep.mp4"></video></center>'
  140. '<<$pakter[1]>> begins to fuck your mouth, driving his cock down your throat with every thrust.'
  141. 'Finally, he takes his cock out and you wipe the saliva from your mouth.'
  142. gs 'arousal', 'bj', 5, 'exhibitionism'
  143. gs 'stat'
  144. act 'Open your mouth':
  145. *clr & cla
  146. minut += 5
  147. facial += 1
  148. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cum.mp4"></video></center>'
  149. '<<$pakter[1]>> is close, so you start quickly jerking him and stick your tongue out for him to shoot his load.'
  150. cumnostd = 1
  151. gs 'cum_call', 'mouth', $pakterID[1], 1, 0, 0, 36
  152. gs 'cum_call', 'face', $pakterID[1], 1, 0, 0, 4
  153. gs 'stat'
  154. act 'Clean his cock':
  155. *clr & cla
  156. minut += 5
  157. swallow += 1
  158. gs 'stat'
  159. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj2.mp4"></video></center>'
  160. 'You keep your eyes fixed on his, as you gently lick every last drop of sperm from his cock.'
  161. gs 'arousal', 'end'
  162. gs 'stat'
  163. act 'Take a shower': gt 'pornstudio', 'shower'
  164. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  165. end
  166. end
  167. end
  168. end
  169. end
  170. end
  171. if $ARGS[0] = '3':
  172. if rand(0,2) = 0: pornhj += 1
  173. if rand(0,2) = 0: pornbj += 1
  174. pornvag += 1
  175. pornswall += 1
  176. pfType = 0
  177. *clr & cla
  178. gs 'fame', 'city', 'porn', 16
  179. minut += 30
  180. gs 'stat'
  181. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  182. 'On the side stands the actor <<$pakter[1]>>, stroking his inviting member.'
  183. act 'Undress and start':
  184. *clr & cla
  185. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/hj.mp4"></video></center>'
  186. '<<$pakter[1]>> sits on the bed. You kneel beside him and take his penis in your hand. You begin to pleasure him.'
  187. gs 'arousal', 'hj', 30, 'exhibitionism'
  188. gs 'stat'
  189. act 'Blow him':
  190. *clr & cla
  191. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj.mp4"></video></center>'
  192. 'You take his shaft into your mouth and start passionately sucking his dick like it''s the most delicious lollipop.'
  193. gs 'arousal', 'bj', 5, 'exhibitionism'
  194. gs 'stat'
  195. act 'Suck more':
  196. *clr & cla
  197. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/deep.mp4"></video></center>'
  198. '<<$pakter[1]>> begins to fuck your mouth deeply, occasionally withdrawing completely to allow you to catch your breath, before returning more vigorously.'
  199. gs 'arousal', 'bj', 5, 'exhibitionism', 'deepthroat'
  200. gs 'stat'
  201. act 'Doggy style':
  202. *clr & cla
  203. pcs_vag += 1
  204. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/doggysex.mp4"></video></center>'
  205. 'You stand and get on all fours on the edge of the bed. <<$pakter[1]>> guides his dick deep into your pussy and begins to fuck you hard from behind.'
  206. !! Precum pregnancy check
  207. cumnostd = 1
  208. gs 'cum_call', 'precum', $pakterID[1], 1, 0, 10000, 1
  209. gs 'arousal', 'vaginal', 15, 'exhibitionism'
  210. gs 'stat'
  211. act 'Facial':
  212. *clr & cla
  213. minut += 5
  214. cumnostd = 1
  215. gs 'cum_call', 'mouth', $pakterID[1], 1, 0, 0, 36
  216. gs 'cum_call', 'face', $pakterID[1], 1, 0, 0, 4
  217. facial += 1
  218. gs 'stat'
  219. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cum.mp4"></video></center>'
  220. '<<$pakter[1]>> pulls out of you and you quickly turn to face him. He shoots his load onto your tongue and face.'
  221. act 'Clean his cock':
  222. *clr & cla
  223. minut += 5
  224. swallow += 1
  225. gs 'stat'
  226. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj2.mp4"></video></center>'
  227. 'Looking into his eyes adoringly, you meticulously lick all the cum off his dick.'
  228. gs 'arousal', 'end'
  229. gs 'stat'
  230. act 'Take a shower': gt 'pornstudio', 'shower'
  231. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  232. end
  233. end
  234. end
  235. end
  236. end
  237. end
  238. end
  239. if $ARGS[0] = '4':
  240. if rand(0,2) = 0: pornhj += 1
  241. if rand(0,1) = 0: pornbj += 1
  242. if rand(0,1) = 0: pornvag += 1
  243. if rand(0,1) = 0: pornanal += 1
  244. if rand(0,1) = 0: pornbukk += 1
  245. if rand(0,1) = 0: pornswall += 1
  246. pfType = 0
  247. *clr & cla
  248. gs 'fame', 'city', 'porn', 20
  249. minut += 30
  250. gs 'stat'
  251. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  252. 'On the side stands the actor <<$pakter[1]>>, stroking his impressive member.'
  253. act 'Undress and start':
  254. *clr & cla
  255. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/hj.mp4"></video></center>'
  256. '<<$pakter[1]>> sits on the bed. You kneel beside him, place your hand on his penis and begin to stroke it.'
  257. gs 'arousal', 'hj', 30, 'exhibitionism'
  258. gs 'stat'
  259. act 'Blow him':
  260. *clr & cla
  261. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj.mp4"></video></center>'
  262. 'Admiring the impressive size of the cock before you, you wrap your lips around the shaft and start sucking it.'
  263. gs 'arousal', 'bj', 5, 'exhibitionism'
  264. gs 'stat'
  265. act 'Suck further':
  266. *clr & cla
  267. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/deep.mp4"></video></center>'
  268. '<<$pakter[1]>> relaxes as you take control, trying to take the full length of his cock down your throat.'
  269. gs 'arousal', 'bj', 5, 'exhibitionism', 'deepthroat'
  270. gs 'stat'
  271. act 'Ride him':
  272. *clr & cla
  273. pcs_vag += 1
  274. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/sex.mp4"></video></center>'
  275. 'You straddle <<$pakter[1]>> and guide his dick into your pussy. You begin to ride him hard.'
  276. 'Just as you''re really getting into it, <<$pakter[1]>> pulls his cock out of you and throws you on all fours. You feel him pressing against your anus.'
  277. !! Precum pregnancy check
  278. cumnostd = 1
  279. gs 'cum_call', 'precum', $pakterID[1], 1, 0, 10000, 1
  280. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  281. gs 'stat'
  282. act 'Anal':
  283. *clr & cla
  284. pcs_ass += 1
  285. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/sex1.mp4"></video></center>'
  286. 'You try as best as you can to relax as <<$pakter[1]>> pushes into your ass and goes at it like a jackhammer.'
  287. gs 'arousal', 'anal', 5, 'exhibitionism'
  288. gs 'stat'
  289. act 'Kneel down and open your mouth':
  290. *clr & cla
  291. minut += 5
  292. facial += 1
  293. gs 'stat'
  294. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cum.mp4"></video></center>'
  295. '<<$pakter[1]>> pulls out of your ass and you kneel before him. He brings his cock to your mouth and feeds you the contents of his balls.'
  296. cumnostd = 1
  297. gs 'cum_call', 'mouth', $pakterID[1], 1, 0, 0, 36
  298. gs 'cum_call', 'face', $pakterID[1], 1, 0, 0, 4
  299. act 'Clean his cock':
  300. *clr & cla
  301. minut += 5
  302. swallow += 1
  303. gs 'stat'
  304. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj2.mp4"></video></center>'
  305. 'You keep look deep into his eyes as you lick his cock clean.'
  306. gs 'arousal', 'end'
  307. gs 'stat'
  308. act 'Take a shower': gt 'pornstudio', 'shower'
  309. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  310. end
  311. end
  312. end
  313. end
  314. end
  315. end
  316. end
  317. end
  318. if $ARGS[0] = '5':
  319. if rand(0,2) = 0: pornhj += 1
  320. if rand(0,1) = 0: pornbj += 1
  321. if rand(0,1) = 0: pornvag += 1
  322. if rand(0,1) = 0: pornanal += 1
  323. if rand(0,1) = 0: pornbukk += 1
  324. if rand(0,1) = 0: pornswall += 1
  325. porngang += 1
  326. pfType = 0
  327. *clr & cla
  328. gs 'fame', 'city', 'porn', 25
  329. minut += 30
  330. gang += 1
  331. gs 'stat'
  332. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  333. 'Actors <<$pakter[1]>> and <<$pakter[2]>>, are watching porn on a monitor, getting their cocks ready for you...'
  334. act 'Undress and kneel':
  335. *clr & cla
  336. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tbj.mp4"></video></center>'
  337. '<<$pakter[1]>> and <<$pakter[2]>> slap their fully erect cocks against your face.'
  338. gs 'arousal', 'bj', 10, 'exhibitionism', 'group'
  339. gs 'stat'
  340. act 'Suck them':
  341. *clr & cla
  342. pornbj += 1
  343. gs 'stat'
  344. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tbj2.mp4"></video></center>'
  345. 'You start by sucking both members trying to please them both. Then, using your tongue, you draw circles under <<$pakter[1]>>s gland, making him moan.'
  346. 'Then you push your lips tightly against <<$pakter[2]>>''s head, until your mouth is forced open, the look in his eyes tells you he''s ready'
  347. gs 'arousal', 'bj', 15, 'exhibitionism'
  348. gs 'stat'
  349. act 'Fuck':
  350. *clr & cla
  351. pcs_vag += 1
  352. pornvag += 1
  353. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/three.mp4"></video></center>'
  354. 'You bend over and <<$pakter[1]>> slides his dick into your pussy while you suck <<$pakter[2]>>.'
  355. !! Precum pregnancy check
  356. cumnostd = 1
  357. gs 'cum_call', 'precum', $pakterID[1], 1, 0, 10000, 1
  358. gs 'arousal', 'bj', -15, 'exhibitionism'
  359. gs 'arousal', 'vaginal', 15, 'exhibitionism'
  360. gs 'stat'
  361. act 'Anal':
  362. *clr & cla
  363. pcs_ass += 1
  364. pornanal += 1
  365. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/threea.mp4"></video></center>'
  366. '<<$pakter[1]>> takes his cock out of your pussy, and plunges it into your ass. The extra tightness quickly overwelms him.'
  367. 'He shoots his load into your ass, all the while you keep sucking <<$pakter[2]>>.'
  368. cumnostd = 1
  369. gs 'cum_call', 'anus', $pakterID[1], 1, 0, 0, 40
  370. gs 'arousal', 'bj', -15, 'exhibitionism'
  371. gs 'arousal', 'anal', 15, 'exhibitionism'
  372. gs 'stat'
  373. act 'Facial':
  374. *clr & cla
  375. minut += 5
  376. facial += 1
  377. pornswall += 1
  378. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tcum.mp4"></video></center>'
  379. 'You move around to clean up <<$pakter[1]>>, when <<$pakter[2]>> grabs your head and shoots his cum onto your face, saying the most depraved things as it slowly trickles down you.'
  380. cumnostd = 1
  381. gs 'cum_call', 'mouth', $pakterID[2], 1, 0, 0, 40
  382. gs 'arousal', 'end'
  383. gs 'stat'
  384. act 'Take a shower': gt 'pornstudio', 'shower'
  385. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  386. end
  387. end
  388. end
  389. end
  390. end
  391. end
  392. if $ARGS[0] = '6':
  393. pornbj += 1
  394. pornvag += 1
  395. pornanal += 1
  396. if rand(0,1) = 0: pornbukk += 1
  397. pornswall += 1
  398. porngang += 1
  399. pfType = 0
  400. *clr & cla
  401. gs 'fame', 'city', 'porn', 25
  402. minut += 30
  403. gang += 1
  404. gs 'stat'
  405. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  406. 'Actors <<$pakter[1]>> and <<$pakter[2]>>, are watching porn on a monitor, getting their cocks ready for you...'
  407. act 'Undress and start':
  408. *clr & cla
  409. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tbj.mp4"></video></center>'
  410. '<<$pakter[1]>> and <<$pakter[2]>> slap their fully erect cocks against your face.'
  411. gs 'arousal', 'bj', 10, 'exhibitionism', 'group'
  412. gs 'stat'
  413. act 'Suck them':
  414. *clr & cla
  415. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tbj2.mp4"></video></center>'
  416. 'You start to suck both members, trying to please them both.'
  417. gs 'arousal', 'bj', 15, 'exhibitionism', 'group'
  418. gs 'stat'
  419. act 'Fuck them':
  420. *clr & cla
  421. pcs_vag += 1
  422. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/three.mp4"></video></center>'
  423. 'You get on all fours and <<$pakter[1]>> fucks you from behind while you suck <<$pakter[2]>>.'
  424. !! Precum pregnancy check
  425. cumnostd = 1
  426. gs 'cum_call', 'precum', $pakterID[1], 1, 0, 10000, 1
  427. gs 'stat'
  428. gs 'arousal', 'bj', -15, 'exhibitionism', 'group'
  429. gs 'arousal', 'vaginal', 15, 'exhibitionism', 'group'
  430. gs 'stat'
  431. act 'Anal':
  432. *clr & cla
  433. pcs_ass += 1
  434. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/threea.mp4"></video></center>'
  435. '<<$pakter[1]>> switches it up and sticks his cock into your ass while you keep sucking <<$pakter[2]>>.'
  436. gs 'arousal', 'bj', -15, 'exhibitionism', 'group'
  437. gs 'arousal', 'anal', 15, 'exhibitionism', 'group'
  438. gs 'stat'
  439. act 'Double Penetration':
  440. *clr & cla
  441. pcs_ass += 1
  442. pcs_vag += 1
  443. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/three2.mp4"></video></center>'
  444. '<<$pakter[1]>> takes his dick out of your ass and lies down. Knowing <<$pakter[1]>> wants more, you straddle his cock.'
  445. 'You feel how his cock fills your pussy while <<$pakter[2]>> comes up from behind you and pushes his penis into your ass.'
  446. 'The guys find a rhythm and grind away at your holes as you moan loudly.'
  447. gs 'arousal', 'anal', -15, 'exhibitionism', 'group'
  448. gs 'arousal', 'vaginal', 15, 'exhibitionism', 'group'
  449. gs 'stat'
  450. act 'Finish them':
  451. *clr & cla
  452. minut += 5
  453. facial += 1
  454. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tcum.mp4"></video></center>'
  455. 'The guys tell you they''re close and both pull out. You grab the cock of <<$pakter[1]>> and begin to suck.'
  456. 'Suddenly your head gets turned around and <<$pakter[2]>> shoots his load on your face and in your mouth, <<$pakter[1]>> following him close behind.'
  457. cumnostd = 1
  458. gs 'cum_call', 'mouth', $pakterID[1], 1, 0, 0, 10
  459. gs 'cum_call', 'face', $pakterID[1], 1, 0, 0, 30
  460. cumnostd = 1
  461. gs 'cum_call', 'mouth', $pakterID[2], 1, 0, 0, 10
  462. gs 'cum_call', 'face', $pakterID[2], 1, 0, 0, 30
  463. gs 'arousal', 'end'
  464. gs 'stat'
  465. act 'Take a shower': gt 'pornstudio', 'shower'
  466. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  467. end
  468. end
  469. end
  470. end
  471. end
  472. end
  473. end
  474. if $ARGS[0] = '7':
  475. if rand(0,1) = 0: pornbj += 1
  476. pornvag += 1
  477. if rand(0,2) = 0: porngang += 1
  478. porncream += 1
  479. pfType = 1
  480. *clr & cla
  481. gs 'fame', 'city', 'porn', 20
  482. minut += 30
  483. $orgasm_or = 'no'
  484. gs 'stat'
  485. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  486. 'On the side stands the actor <<$pakter[1]>>, stroking his member.'
  487. act 'Undress and start':
  488. *clr & cla
  489. pornbj += 1
  490. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj.mp4"></video></center>'
  491. '<<$pakter[1]>> sits before a TV. You walk up to him while disrobing and kneel between his legs, taking his cock in your mouth and begin sucking the head of his penis.'
  492. gs 'arousal', 'bj', 30, 'exhibitionism'
  493. gs 'stat'
  494. act 'Keep sucking':
  495. *clr & cla
  496. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/deep.mp4"></video></center>'
  497. '<<$pakter[1]>> begins to fuck your mouth, driving his cock down your throat with every thrust.'
  498. 'Finally he takes his cock out and you wipe the saliva from your mouth.'
  499. gs 'arousal', 'bj', 15, 'exhibitionism'
  500. gs 'stat'
  501. act 'Get fucked':
  502. *clr & cla
  503. gs 'stat'
  504. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/pronebone.mp4"></video></center>'
  505. '<<$pakter[1]>> grabs your hips, throws you on the couch and climbs on top of you. You feel him slide into your pussy and he begins to fuck you hard.'
  506. gs 'arousal', 'vaginal', 15, 'exhibitionism'
  507. gs 'stat'
  508. if orgasm_buildup => 200 - pcs_inhib:
  509. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'exhib', 'self', 'hard'
  510. if will_cost <= pcs_willpwr or orgasm_buildup => 300 - pcs_inhib:
  511. act iif(orgasm_buildup < 300 - pcs_inhib, 'Block out everything but the pleasure and let yourself orgasm (<<will_cost>> Willpower)', 'Orgasm'):
  512. *clr & cla
  513. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'pay', 'self'
  514. orgasmbonus += 10
  515. porngasm += 1
  516. cumnostd = 1
  517. gs 'cum_call', '', $pakterID[1], 1, 0, 10000, 40
  518. gs 'stat'
  519. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porncp<<rand(1,3)>>.mp4" width="400"></video></center>'
  520. 'You are really getting into it and soon reach your orgasm. Your convulsing pussy tightens around <<$pakter[1]>>, which sends him over the edge. You soon feel yourself being filled with a considerable amount of sperm.'
  521. 'He climbs off of you, but you stay on the couch while the cameraman comes forward to film your pussy as it slowly starts to leak the actor''s seed. After a few minutes the director nods his head, and you get up.'
  522. $orgasm_or = 'yes'
  523. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  524. gs 'arousal', 'end'
  525. gs 'stat'
  526. act 'Take a shower': gt 'pornstudio', 'shower'
  527. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  528. end
  529. else
  530. act 'Block out everything but the pleasure and let yourself orgasm (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  531. end
  532. end
  533. if orgasm_buildup < 300 - pcs_inhib:
  534. act 'Fake orgasm':
  535. *clr & cla
  536. cumnostd = 1
  537. gs 'cum_call', '', $pakterID[1], 1, 0, 10000, 40
  538. gs 'stat'
  539. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porncp<<rand(1,3)>>.mp4" width="400"></video></center>'
  540. '<<$pakter[1]>> is pounding your pussy and you soon feel him cumming inside of you, so you fake a screaming orgasm for the film. You keep your eyes fixed on his as he pumps a huge amount of sperm into you.'
  541. 'He climbs off of you, but you stay on the couch while the cameraman comes forward to film your pussy as it slowly starts to leak the actor''s seed. After a few minutes the director nods his head, and you get up.'
  542. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  543. gs 'arousal', 'end'
  544. gs 'stat'
  545. act 'Take a shower': gt 'pornstudio', 'shower'
  546. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  547. end
  548. end
  549. end
  550. end
  551. end
  552. end
  553. if $ARGS[0] = '8':
  554. if rand(0,2) = 0: pornbj += 1
  555. pornvag += 1
  556. pornanal += 1
  557. porngang += 1
  558. porncream += 1
  559. pfType = 1
  560. *clr & cla
  561. gs 'fame', 'city', 'porn', 25
  562. minut += 30
  563. gang += 1
  564. porngang += 1
  565. $orgasm_or = 'no'
  566. gs 'stat'
  567. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  568. 'Actors <<$pakter[1]>> and <<$pakter[2]>>, are watching porn on a monitor, getting their cocks ready for you...'
  569. act 'Undress and kneel':
  570. *clr & cla
  571. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tbj.mp4"></video></center>'
  572. '<<$pakter[1]>> and <<$pakter[2]>> slap their fully erect cocks against your face.'
  573. gs 'arousal', 'bj', 10, 'exhibitionism', 'group'
  574. gs 'stat'
  575. act 'Suck them':
  576. *clr & cla
  577. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tbj2.mp4"></video></center>'
  578. 'You start by sucking both members trying to please them both. Then, using your tongue, you draw circles under <<$pakter[1]>>''s gland, making him moan.'
  579. 'Then you push your lips tightly against <<$pakter[2]>>''s head, until your mouth is forced open, the look in his eyes tells you he''s ready'
  580. gs 'arousal', 'bj', 15, 'exhibitionism', 'group'
  581. gs 'stat'
  582. act 'Fuck them':
  583. *clr & cla
  584. pcs_vag += 1
  585. pcs_ass += 1
  586. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/threesomedp<<rand(1,5)>>.mp4" width="500"></video></center>'
  587. if rand(0,1) = 0:
  588. cumnostd = 1
  589. gs 'cum_call', '', $pakterID[1], 1, 0, 10000, 40
  590. gs 'cum_call', 'anus', $pakterID[2], 1, 0, 0, 40
  591. '<<$pakter[1]>> lays on the bed and you climb on top of him, sliding his cock into your pussy, then wait until <<$pakter[2]>> pushes into your ass. He soon starts to fuck you enthusiastically, making you ride <<$pakter[1]>>''s dick. This continues for a while, but soon the director signals to the guys that they should cum inside.'
  592. else
  593. cumnostd = 1
  594. gs 'cum_call', '', $pakterID[2], 1, 0, 10000, 40
  595. gs 'cum_call', 'anus', $pakterID[1], 1, 0, 0, 40
  596. '<<$pakter[2]>> lays on the bed and you climb on top of him, sliding his cock into your pussy, then wait until <<$pakter[1]>> pushes into your ass. He soon starts to fuck you enthusiastically, making you ride <<$pakter[2]>>''s dick. This continues for a while, but soon the director signals to the guys that they should cum inside.'
  597. end
  598. gs 'arousal', 'anal', -25, 'exhibitionism', 'group'
  599. gs 'arousal', 'vaginal', 25, 'exhibitionism', 'group'
  600. gs 'stat'
  601. 'The guys start to fuck you even faster as a reply, and pretty soon you feel them twitching inside of your body.'
  602. if orgasm_buildup => 200 - pcs_inhib:
  603. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'exhib', 'self', 'hard'
  604. if will_cost <= pcs_willpwr or orgasm_buildup => 300 - pcs_inhib:
  605. act iif(orgasm_buildup < 300 - pcs_inhib, 'Block out everything but the pleasure and let yourself orgasm (<<will_cost>> Willpower)', 'Orgasm'):
  606. cla
  607. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'pay', 'self'
  608. porngasm += 1
  609. orgasmbonus += 10
  610. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  611. 'You have a real orgasm while filming. You keep your eyes fixed on the guy below you as he pumps a huge amount of sperm in you. The guys finished, you lay down on the bed with your legs apart so the cameraman could take a few closeups of your pussy and ass as the actors seed is slowly leaking out of you. After a few minutes of this the director nods his head, and you get up.'
  612. $orgasm_or = 'yes'
  613. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  614. gs 'arousal', 'end'
  615. gs 'stat'
  616. act 'Take a shower': gt 'pornstudio', 'shower'
  617. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  618. end
  619. else
  620. act 'Block out everything but the pleasure and let yourself orgasm (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  621. end
  622. end
  623. if orgasm_buildup < 300 - pcs_inhib:
  624. act 'Fake orgasm':
  625. cla
  626. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  627. 'You fake a screaming orgasm for the film. You keep your eyes fixed on the guy below you as he pumps a huge amount of sperm in you. The guys finished, you lay down on the bed with your legs apart so the cameraman could take a few closeups of your pussy and ass as the actors seed is slowly leaking out of you. After a few minutes of this the director nods his head, and you get up.'
  628. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  629. gs 'arousal', 'end'
  630. gs 'stat'
  631. act 'Take a shower': gt 'pornstudio', 'shower'
  632. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  633. end
  634. end
  635. end
  636. end
  637. end
  638. end
  639. if $ARGS[0] = '9':
  640. if rand(0,2) = 0: pornbj += 1
  641. pornswall += 1
  642. pornvag += 1
  643. porngang += 1
  644. porncream += 1
  645. pfType = 1
  646. *clr & cla
  647. gs 'fame', 'city', 'porn', 25
  648. minut += 30
  649. gang += 1
  650. $orgasm_or = 'no'
  651. gs 'stat'
  652. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  653. 'Actors <<$pakter[1]>> and <<$pakter[2]>>, are watching porn on a monitor, getting their cocks ready for you...'
  654. act 'Undress and kneel':
  655. *clr & cla
  656. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tbj.mp4"></video></center>'
  657. '<<$pakter[1]>> and <<$pakter[2]>> slap their fully erect cocks against your face.'
  658. gs 'arousal', 'bj', 10, 'exhibitionism', 'group'
  659. gs 'stat'
  660. act 'Suck them':
  661. *clr & cla
  662. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/tbj2.mp4"></video></center>'
  663. 'You start by sucking both members trying to please them both. Then, using your tongue, you draw circles under <<$pakter[1]>>''s gland, making him moan.'
  664. 'Then you sucking <<$pakter[2]>>''s dick while he grabs your hair for leverage and facefucks you. After a while the director gestures for you to get to the next scene, so he releases you, and looking at <<$pakter[1]>> he urges you to push your ass out.'
  665. gs 'arousal', 'bj', 15, 'exhibitionism', 'group', 'rough', 'deepthroat'
  666. gs 'stat'
  667. act 'Fuck them':
  668. *clr & cla
  669. pornvag += 1
  670. pornswall += 1
  671. '<center><video autoplay loop src="images/shared/sex/group/threesomepm<<rand(1,12)>>.mp4" width="500"></video></center>'
  672. if rand(0,1) = 0:
  673. !! Precum pregnancy check
  674. cumnostd = 1
  675. gs 'cum_call', 'precum', $pakterID[1], 1, 0, 10000, 1
  676. cumnostd = 1
  677. gs 'cum_call', '', $pakterID[1], 1, 0, 10000, 40
  678. cumnostd = 1
  679. gs 'cum_call', 'mouth', $pakterID[2], 1, 0, 0, 40
  680. 'You get in position before <<$pakter[2]>> and start to suck him while <<$pakter[1]>> starts to fuck your pussy. He fucks you enthusiastically, making you swallow <<$pakter[2]>>''s dick. This continues for a while, but soon the director signals that the scene is good enough and it is time for the finale.'
  681. else
  682. !! Precum pregnancy check
  683. cumnostd = 1
  684. gs 'cum_call', 'precum', $pakterID[2], 1, 0, 10000, 1
  685. cumnostd = 1
  686. gs 'cum_call', '', $pakterID[2], 1, 0, 10000, 40
  687. cumnostd = 1
  688. gs 'cum_call', 'anus', $pakterID[1], 1, 0, 0, 40
  689. 'You get in position before <<$pakter[1]>> and start to suck him while <<$pakter[2]>> starts to fuck your pussy. He fucks you enthusiastically, making you swallow <<$pakter[1]>>''s dick. This continues for a while, but soon the director signals that the scene is good enough and it is time for the finale.'
  690. end
  691. gs 'arousal', 'bj', -25, 'exhibitionism', 'group'
  692. gs 'arousal', 'vaginal', 25, 'exhibitionism', 'group'
  693. gs 'stat'
  694. 'The guys immediately start to fuck you even faster, clearly trying to cum as soon as possible, while still coordinating with each other, and since they are professional, you soon feel them twitching inside you simultaneously, your pussy being filled as a load of sperm hits your throat.'
  695. if orgasm_buildup => 200 - pcs_inhib:
  696. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'exhib', 'self', 'hard'
  697. if will_cost <= pcs_willpwr or orgasm_buildup => 300 - pcs_inhib:
  698. act iif(orgasm_buildup < 300 - pcs_inhib, 'Block out everything but the pleasure and let yourself orgasm (<<will_cost>> Willpower)', 'Orgasm'):
  699. cla
  700. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'pay', 'self'
  701. orgasmbonus += 10
  702. porngasm += 1
  703. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  704. 'You have a real orgasm while filming, your moans muffled by the cock in your mouth. The guys finish and step away so the cameraman can film you swallowing the load in your mouth before getting a closeup of your leaking pussy.'
  705. $orgasm_or = 'yes'
  706. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  707. gs 'arousal', 'end'
  708. gs 'stat'
  709. act 'Take a shower': gt 'pornstudio', 'shower'
  710. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  711. end
  712. else
  713. act 'Block out everything but the pleasure and let yourself orgasm (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  714. end
  715. end
  716. if orgasm_buildup < 300 - pcs_inhib:
  717. act 'Fake orgasm':
  718. cla
  719. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  720. 'You fake an orgasm for the film, your moans muffled by the cock in your mouth. The guys finish and step away so the cameraman can film you swallowing the load in your mouth before getting a closeup of your leaking pussy.'
  721. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  722. gs 'arousal', 'end'
  723. gs 'stat'
  724. act 'Take a shower': gt 'pornstudio', 'shower'
  725. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  726. end
  727. end
  728. end
  729. end
  730. end
  731. end
  732. if $ARGS[0] = '10':
  733. if rand(0,1) = 0: pornbj += 1
  734. pornvag += 2
  735. porngang += 2
  736. if rand(0,1) = 0: pornhj += 1
  737. pornbukk += 2
  738. pfType = 1
  739. *clr & cla
  740. gs 'fame', 'city', 'porn', 30
  741. minut += 30
  742. gang += 1
  743. $orgasm_or = 'no'
  744. gs 'stat'
  745. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  746. 'Actors <<$pakter[1]>>, <<$pakter[2]>>, <<$pakter[3]>> and <<$pakter[4]>> are talking loudly, trying to decide the order they will fuck you, while watching porn on a monitor, getting their cocks ready for you...'
  747. act 'Warmup':
  748. *clr & cla
  749. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/warmupgang.mp4" width="500"></video></center>'
  750. 'The actors gather around you, and you soon suck one guy while giving a handjob to another. The two other guys get creative, one of them sucking your tits, while the other licks your pussy. The guys switch places once in a while, and soon the director indicates to change the scene.'
  751. gs 'arousal', 'bj', -20, 'exhibitionism', 'group'
  752. gs 'arousal', 'hj', 20, 'exhibitionism', 'group'
  753. gs 'stat'
  754. act 'Fuck them':
  755. *clr & cla
  756. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/gangp<<rand(1,4)>>.mp4" width="500"></video></center>'
  757. 'The guys start to fuck you, one after the other, but never cumming. All the while, you keep them rock hard by jerking and sucking them off.'
  758. !! Precum pregnancy check
  759. cumnostd = 1
  760. gs 'cum_call', 'precum', $pakterID[1], 1, 0, 10000, 1
  761. cumnostd = 1
  762. gs 'cum_call', 'precum', $pakterID[2], 1, 0, 10000, 1
  763. cumnostd = 1
  764. gs 'cum_call', 'precum', $pakterID[3], 1, 0, 10000, 1
  765. cumnostd = 1
  766. gs 'cum_call', 'precum', $pakterID[4], 1, 0, 10000, 1
  767. gs 'arousal', 'vaginal', 20, 'exhibitionism', 'group'
  768. gs 'stat'
  769. act 'Cream bath':
  770. killvar 'cuminside'
  771. *clr & cla
  772. 'The guys continue to fuck you, but this time with the purpose of cumming as quickly as possible.'
  773. if rand(0,5) > 0:
  774. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbath<<rand(1,4)>>.mp4" width="500"></video></center>'
  775. '<<$pakter[1]>> suddenly groans, pulling out in the last second coating your pussylips with his sperm.'
  776. gs 'cum_call', 'labia', $pakterID[1], 1, 0, 10000, 40
  777. else
  778. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbathm<<rand(1,2)>>.mp4" width="500"></video><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbath<<rand(1,4)>>.mp4" width="500"></video></center>'
  779. '<<$pakter[1]>> suddenly groans, pulling his dick out of your pussy but messes up when his first shot of seed sprays straight into your open vagina, but he quickly corrects it, and the others coat your pussylips.'
  780. cumnostd = 1
  781. gs 'cum_call', '', $pakterID[1], 1, 0, 10000, 10
  782. gs 'cum_call', 'labia', $pakterID[1], 1, 0, 10000, 30
  783. cuminside = 1
  784. end
  785. if orgasm_buildup >= 200 - pcs_inhib:
  786. orgasmbonus += 10
  787. pornorg = 1
  788. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  789. 'You have a real orgasm while filming. You keep your eyes fixed on the guy as he coats your writhing body with his seed.'
  790. $orgasm_or = 'yes'
  791. gs 'stat'
  792. end
  793. gs 'arousal', 'vaginal', 5, 'exhibitionism', 'group'
  794. gs 'stat'
  795. 'When he is done, he is replaced by <<$pakter[2]>>, who also fucks you.'
  796. if rand(0,5) > 0:
  797. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbath<<rand(1,4)>>.mp4" width="500"></video></center>'
  798. '<<$pakter[2]>> suddenly groans, pulling out in the last second coating your breasts with his sperm.'
  799. gs 'cum_call', 'breasts', $pakterID[2], 1, 0, 10000, 40
  800. else
  801. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbathm<<rand(1,2)>>.mp4" width="500"></video><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbath<<rand(1,4)>>.mp4" width="500"></video></center>'
  802. '<<$pakter[2]>> suddenly groans, pulling his dick out of your pussy but messes up when his first shot of seed sprays straight into your open vagina, but he quickly corrects it, and the others coat your breasts.'
  803. cumnostd = 1
  804. gs 'cum_call', '', $pakterID[2], 1, 0, 10000, 10
  805. gs 'cum_call', 'labia', $pakterID[2], 1, 0, 10000, 30
  806. cuminside = 1
  807. end
  808. if orgasm_buildup >= 200 - pcs_inhib:
  809. orgasmbonus += 10
  810. pornorg = 1
  811. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  812. 'You have a real orgasm while filming. You keep your eyes fixed on the guy as he coats your writhing body with his seed.'
  813. $orgasm_or = 'yes'
  814. gs 'stat'
  815. end
  816. gs 'arousal', 'vaginal', 5, 'exhibitionism', 'group'
  817. gs 'stat'
  818. 'When he is done, he is replaced by <<$pakter[3]>>, who also fucks you.'
  819. if rand(0,5) > 0:
  820. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbath<<rand(1,4)>>.mp4" width="500"></video></center>'
  821. '<<$pakter[3]>> suddenly groans, pulling out in the last second coating your face and hair with his sperm.'
  822. gs 'cum_call', 'hair', $pakterID[3], 1, 0, 10000, 20
  823. gs 'cum_call', 'face', $pakterID[3], 1, 0, 10000, 20
  824. else
  825. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbathm<<rand(1,2)>>.mp4" width="500"></video><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbath<<rand(1,4)>>.mp4" width="500"></video></center>'
  826. '<<$pakter[3]>> suddenly groans, pulling his dick out of your pussy but messes up when his first shot of seed sprays straight into your open vagina, but he quickly corrects it, and the others coat your face and hair with his sperm.'
  827. cumnostd = 1
  828. gs 'cum_call', '', $pakterID[3], 1, 0, 10000, 10
  829. gs 'cum_call', 'hair', $pakterID[3], 1, 0, 10000, 15
  830. gs 'cum_call', 'face', $pakterID[3], 1, 0, 10000, 15
  831. cuminside = 1
  832. end
  833. if orgasm_buildup >= 200 - pcs_inhib:
  834. orgasmbonus += 10
  835. pornorg = 1
  836. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  837. 'You have a real orgasm while filming. You keep your eyes fixed on the guy as he coats your writhing body with his seed.'
  838. $orgasm_or = 'yes'
  839. end
  840. gs 'arousal', 'vaginal', 5, 'exhibitionism', 'group'
  841. gs 'stat'
  842. 'When he is done, he is replaced by <<$pakter[4]>>, who also fucks you.'
  843. if rand(0,5) > 0:
  844. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbath<<rand(1,4)>>.mp4" width="500"></video></center>'
  845. '<<$pakter[4]>> suddenly groans, pulling out in the last second coating your belly with his sperm.'
  846. gs 'cum_call', 'stomach', $pakterID[4], 1, 0, 10000, 40
  847. else
  848. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbathm<<rand(1,2)>>.mp4" width="500"></video><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumbath<<rand(1,4)>>.mp4" width="500"></video></center>'
  849. '<<$pakter[4]>> suddenly groans, pulling his dick out of your pussy but messes up when his first shot of seed sprays straight into your open vagina, but he quickly corrects it, and the others coat your belly with his sperm.'
  850. cumnostd = 1
  851. gs 'cum_call', '', $pakterID[4], 1, 0, 10000, 10
  852. gs 'cum_call', 'stomach', $pakterID[4], 1, 0, 10000, 30
  853. cuminside = 1
  854. end
  855. if orgasm_buildup >= 200 - pcs_inhib:
  856. orgasmbonus += 10
  857. pornorg = 1
  858. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  859. 'You have a real orgasm while filming. You keep your eyes fixed on the guy as he coats your writhing body with his seed.'
  860. $orgasm_or = 'yes'
  861. end
  862. gs 'arousal', 'vaginal', 5, 'exhibitionism', 'group'
  863. if cuminside = 1: porncream += 1 & killvar 'cuminside'
  864. if pornorg = 1: porngasm += 1 & killvar 'pornorg'
  865. gs 'stat'
  866. gs 'arousal', 'end'
  867. gs 'stat'
  868. act 'Take a shower': gt 'pornstudio', 'shower'
  869. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  870. end
  871. end
  872. end
  873. end
  874. if $ARGS[0] = '11':
  875. if rand(0,1) = 0:pornbj += 1
  876. if rand(0,1) = 0:pornhj += 1
  877. pornvag += 2
  878. porngang += 2
  879. porncream += 2
  880. pfType = 1
  881. *clr & cla
  882. gs 'fame', 'city', 'porn', 30
  883. minut += 30
  884. gang += 1
  885. $orgasm_or = 'no'
  886. gs 'stat'
  887. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  888. 'Actors <<$pakter[1]>>, <<$pakter[2]>>, <<$pakter[3]>> and <<$pakter[4]>> are talking loudly, trying to decide the order they will fuck you, while watching porn on a monitor, getting their cocks ready for you...'
  889. act 'Warmup':
  890. *clr & cla
  891. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/warmupgang.mp4" width="500"></video></center>'
  892. 'The actors gather around you, and you soon suck one guy while giving a handjob to another. The two other guys get creative, one of them sucking your tits, while the other licks your pussy. The guys switch places once in a while, and soon the director indicates to change the scene.'
  893. gs 'arousal', 'hj', -20, 'exhibitionism', 'group'
  894. gs 'arousal', 'cuni', 20, 'exhibitionism', 'group'
  895. gs 'stat'
  896. act 'Fuck them':
  897. *clr & cla
  898. '<center><video autoplay loop src="images/shared/sex/group/threesomepm<<rand(1,12)>>.mp4" width="500"></video></center>'
  899. 'The guys start to fuck you, one after the other, but never cumming. All the while you keep them rock hard by jerking and sucking them off.'
  900. gs 'arousal', 'hj', -20, 'exhibitionism', 'group'
  901. gs 'arousal', 'bj', -20, 'exhibitionism', 'group'
  902. gs 'arousal', 'vaginal', 20, 'exhibitionism', 'group'
  903. gs 'stat'
  904. act 'Creampies':
  905. *clr & cla
  906. minut += 5
  907. porncream += 1
  908. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porncp<<rand(1,4)>>.mp4" width="500"></video></center>'
  909. cumnostd = 1
  910. gs 'cum_call', '', $pakterID[1], 1, 0, 10000, 40
  911. cumnostd = 1
  912. gs 'cum_call', '', $pakterID[2], 1, 0, 10000, 40
  913. cumnostd = 1
  914. gs 'cum_call', '', $pakterID[3], 1, 0, 10000, 40
  915. cumnostd = 1
  916. gs 'cum_call', '', $pakterID[4], 1, 0, 10000, 40
  917. gs 'arousal', 'vaginal', 15, 'exhibitionism', 'group'
  918. if orgasm_buildup => 200 - pcs_inhib:
  919. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'exhib', 'self', 'hard'
  920. if will_cost <= pcs_willpwr or orgasm_buildup => 300 - pcs_inhib:
  921. act iif(orgasm_buildup < 300 - pcs_inhib, 'Block out everything but the pleasure and let yourself orgasm (<<will_cost>> Willpower)', 'Orgasm'):
  922. *clr & cla
  923. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'pay', 'self'
  924. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porncp4some.mp4" width="400"></video></center>'
  925. 'You spread your legs and smile at the guys, inviting them to cum in you and in moments, your pussy is being filled. The loads from the first two guys start to leak from you as the last guy fucks you. '
  926. 'Since you are already on edge, this pushes you over and you cum around his dick, milking it even more. The director seems extremely pleased with this, as the cameraman captures it all from about a meter distance. As soon as the guys are finished, the camera comes for a close up as you spread your lips and a stream of cum runs from your pussy.'
  927. orgasmbonus += 10
  928. porngasm += 1
  929. $orgasm_or = 'yes'
  930. gs 'arousal', 'vaginal', 5, 'exhibitionism', 'group'
  931. gs 'arousal', 'end'
  932. gs 'stat'
  933. act 'Finish':
  934. *clr & cla
  935. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/pornwalk.mp4" height="200">'
  936. 'The scene ends with you putting on your dress, and stepping out the door, with the four guy''s loads still dripping from your pussy.'
  937. act 'Take a shower': gt 'pornstudio', 'shower'
  938. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  939. end
  940. end
  941. else
  942. act 'Block out everything but the pleasure and let yourself orgasm (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  943. end
  944. end
  945. if orgasm_buildup < 300 - pcs_inhib:
  946. act 'Fake orgasm':
  947. *clr & cla
  948. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porncp4some.mp4" width="400"></video></center>'
  949. 'You spread your legs and smile at the guys, inviting them to cum in you and in moments, your pussy is being filled. The loads from the first two guys start to leak from you as the last guy fucks you.
  950. As soon as the guys are finished, the camera comes for a close up as you spread your lips and a stream of cum runs from your pussy.'
  951. gs 'arousal', 'end'
  952. gs 'stat'
  953. act 'Finish':
  954. *clr & cla
  955. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/pornwalk.mp4" height="200">'
  956. 'The scene ends with you putting on your dress, and stepping out the door, with the four guy''s loads still dripping from your pussy.'
  957. act 'Take a shower': gt 'pornstudio', 'shower'
  958. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  959. end
  960. end
  961. end
  962. end
  963. end
  964. end
  965. end
  966. if $ARGS[0] = '12':
  967. if rand(0,1) = 0: pornbj += 1
  968. if rand(0,1) = 0: pornhj += 1
  969. pornanal += 2
  970. porngang += 2
  971. porncream += 2
  972. pfType = 0
  973. *clr & cla
  974. gs 'fame', 'city', 'porn', 30
  975. minut += 30
  976. gang += 1
  977. $orgasm_or = 'no'
  978. gs 'stat'
  979. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  980. 'Actors <<$pakter[1]>>, <<$pakter[2]>>, <<$pakter[3]>> and <<$pakter[4]>> are talking loudly, trying to decide the order they will fuck you, while watching porn on a monitor, getting their cocks ready for you...'
  981. act 'Warmup':
  982. *clr & cla
  983. gs 'stat'
  984. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/warmupgang.mp4" width="500"></video></center>'
  985. 'The actors gather around you, and you soon suck one guy while giving a handjob to another. The two other guys get creative, one of them sucking your tits, while the other licks your pussy. The guys switch places once in a while, and soon the director indicates to change the scene.'
  986. gs 'arousal', 'hj', -20, 'exhibitionism', 'group'
  987. gs 'arousal', 'cuni', 20, 'exhibitionism', 'group'
  988. gs 'stat'
  989. act 'Fuck them':
  990. *clr & cla
  991. gs 'stat'
  992. '<center><video autoplay loop src="images/shared/sex/group/threesomepm<<rand(0,5)>>.mp4" width="500"></video></center>'
  993. 'The guys start to fuck your ass, one after the other, but never cumming. All the while you keep them rock hard by jerking and sucking them off.'
  994. gs 'arousal', 'hj', -20, 'exhibitionism', 'group'
  995. gs 'arousal', 'bj', -20, 'exhibitionism', 'group'
  996. gs 'arousal', 'anal', 20, 'exhibitionism', 'group'
  997. gs 'stat'
  998. act 'Anal creampies':
  999. *clr & cla
  1000. minut += 5
  1001. cumnostd = 1
  1002. gs 'cum_call', 'anus', $pakterID[1], 1, 0, 10000, 40
  1003. cumnostd = 1
  1004. gs 'cum_call', 'anus', $pakterID[2], 1, 0, 10000, 40
  1005. cumnostd = 1
  1006. gs 'cum_call', 'anus', $pakterID[3], 1, 0, 10000, 40
  1007. cumnostd = 1
  1008. gs 'cum_call', 'anus', $pakterID[4], 1, 0, 10000, 40
  1009. gs 'arousal', 'anal', 5, 'exhibitionism', 'group'
  1010. if orgasm_buildup => 200 - pcs_inhib:
  1011. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'exhib', 'self', 'hard'
  1012. if will_cost <= pcs_willpwr or orgasm_buildup => 300 - pcs_inhib:
  1013. act iif(orgasm_buildup < 300 - pcs_inhib, 'Block out everything but the pleasure and let yourself orgasm (<<will_cost>> Willpower)', 'Orgasm'):
  1014. *clr & cla
  1015. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'pay', 'self'
  1016. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/anal4some.mp4" width="400"></video></center>'
  1017. 'You lower your head on the pillows while pushing your ass in the air, giving the guys easy access. One of them immediately starts to fuck your ass, then stops, and pushing his dick in deep, he pumps his considerable amount of sperm into your bowels.'
  1018. 'Since you are already on edge, this pushes you over and you came around his dick, milking it even more. The director seems extremely pleased with this, as the cameraman captured it all from about a meter distance. As soon as he steps aside, another guy replaces him, then the third and fourth guys also cum in your ass.'
  1019. orgasmbonus += 10
  1020. porngasm += 1
  1021. $orgasm_or = 'yes'
  1022. gs 'arousal', 'anal', 5, 'exhibitionism', 'group'
  1023. gs 'arousal', 'end'
  1024. gs 'stat'
  1025. act 'Finish':
  1026. *clr & cla
  1027. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/pornwalk.mp4" height="200">'
  1028. 'The scene ends with you putting on your dress, and stepping out the door, with the four guy''s load still inside you.'
  1029. act 'Take a shower': gt 'pornstudio', 'shower'
  1030. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1031. end
  1032. end
  1033. else
  1034. act 'Block out everything but the pleasure and let yourself orgasm (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1035. end
  1036. end
  1037. if orgasm_buildup < 300 - pcs_inhib:
  1038. act 'Fake orgasm':
  1039. *clr & cla
  1040. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/anal4some.mp4" width="400"></video></center>'
  1041. 'You lower your head on the pillows while pushing your ass in the air, giving the guys easy access. One of them immediately starts to fuck your ass, then stops, and pushing his dick in deep he pumps his considerable amount of sperm in your colon. As soon as he steps aside, another guy replaces him, then the third and fourth guys also cum in your ass.'
  1042. gs 'arousal', 'anal', 5, 'exhibitionism', 'group'
  1043. gs 'arousal', 'end'
  1044. gs 'stat'
  1045. act 'Finish':
  1046. *clr & cla
  1047. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/pornwalk.mp4" height="200">'
  1048. 'The scene ends with you putting on your dress, and stepping out the door, with the four guy''s load still inside you.'
  1049. act 'Take a shower': gt 'pornstudio', 'shower'
  1050. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1051. end
  1052. end
  1053. end
  1054. end
  1055. end
  1056. end
  1057. end
  1058. if $ARGS[0] = '13':
  1059. if rand(0,1) = 0:pornbj += 1
  1060. if rand(0,1) = 0:pornhj += 1
  1061. pornvag += 1
  1062. pornanal += 1
  1063. porngang += 2
  1064. porncream += 2
  1065. pfType = 1
  1066. *clr & cla
  1067. gs 'fame', 'city', 'porn', 30
  1068. minut += 30
  1069. gang += 1
  1070. $orgasm_or = 'no'
  1071. gs 'stat'
  1072. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  1073. 'Actors <<$pakter[1]>>, <<$pakter[2]>>, <<$pakter[3]>> and <<$pakter[4]>> are talking loudly, trying to decide the order they will fuck you, while watching porn on a monitor, getting their cocks ready for you...'
  1074. act 'Kneel in front of them':
  1075. *clr & cla
  1076. gs 'stat'
  1077. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/warmupgang.mp4" width="500"></video></center>'
  1078. 'You kneel in front of the guys and start to suck <<$paktor[1]>> and <<$paktor[2]>> in turns, while giving a handjob to <<$paktor[3]>> and <<$paktor[4]>>. Pretty soon they are all hard and ready, and the director nods to you.'
  1079. gs 'arousal', 'hj', -20, 'exhibitionism', 'group'
  1080. gs 'arousal', 'bj', 20, 'exhibitionism', 'group'
  1081. gs 'stat'
  1082. act 'Let them fuck you':
  1083. *clr & cla
  1084. cumnostd = 1
  1085. gs 'cum_call', '', $pakterID[1], 1, 0, 10000, 40
  1086. cumnostd = 1
  1087. gs 'cum_call', '', $pakterID[2], 1, 0, 10000, 40
  1088. gs 'arousal', 'vaginal', 25, 'exhibitionism', 'group'
  1089. '<center><video autoplay loop src="images/shared/sex/group/doublevag<<rand(1,4)>>.mp4" width="500"></video></center>'
  1090. if orgasm_buildup < 200 - pcs_inhib:
  1091. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  1092. '<<$paktor[1]>> lies down on the bed and you slide down onto his dick, moaning as it stretches your pussy. <<$paktor[2]>> steps behind you and pushes his dick inside of your already occupied vagina, and the two guys start to fuck you in tandem. When the director signals, the two guys starts to fuck you more forcefully, and thanks to their timing, they came inside you at the same time.'
  1093. 'You fake an orgasm for the camera while you wait for them to unload inside you.'
  1094. gs 'arousal', 'vaginal', 5, 'exhibitionism', 'group'
  1095. gs 'stat'
  1096. else
  1097. orgasmbonus += 10
  1098. porngasm += 1
  1099. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  1100. '<<$paktor[1]>> lies down on the bed and you slide down onto his dick, moaning as it stretches your pussy. <<$paktor[2]>> steps behind you and pushes his dick inside of your already occupied vagina, and the two guys start to fuck you in tandem. When the director signals, the two guys starts to fuck you more forcefully, and thanks to their timing, they came inside you at the same time.'
  1101. 'You also cum, crying out in pleasure as your pussy contracts around them while they unload inside you.'
  1102. $orgasm_or = 'yes'
  1103. gs 'arousal', 'vaginal', 5, 'exhibitionism', 'group'
  1104. gs 'stat'
  1105. end
  1106. $orgasm_or = 'no'
  1107. gs 'stat'
  1108. act 'They fuck your ass':
  1109. *clr & cla
  1110. cumnostd = 1
  1111. gs 'cum_call', 'anus', $pakterID[3], 1, 0, 10000, 40
  1112. cumnostd = 1
  1113. gs 'cum_call', 'anus', $pakterID[4], 1, 0, 10000, 40
  1114. gs 'arousal', 'anal', 25, 'exhibitionism', 'group'
  1115. gs 'stat'
  1116. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/doublean<<rand(1,4)>>.mp4" width="500"></video></center>'
  1117. 'The first drops of sperm leak from your pussy as <<$paktor[3]>> and <<$paktor[4]>> switch places with <<$paktor[1]>> and <<$paktor[2]>>. You give them both a quick blowjob before <<$paktor[3]>> lies on the bed and pulls you on top of him, sliding his cock into your ass. <<$paktor[4]>> moves in behind and inserts his dick into your already stretched hole. Despite the tightness, the guys quickly find a rhythm.'
  1118. if orgasm_buildup => 200 - pcs_inhib:
  1119. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'exhib', 'self', 'hard'
  1120. if will_cost <= pcs_willpwr or orgasm_buildup => 300 - pcs_inhib:
  1121. act iif(orgasm_buildup < 300 - pcs_inhib, 'Block out everything but the pleasure and let yourself orgasm (<<will_cost>> Willpower)', 'Orgasm'):
  1122. *clr & cla
  1123. if orgasm_buildup < 300 - pcs_inhib: gs 'willpower', 'pay', 'self'
  1124. orgasmbonus += 10
  1125. porngasm += 1
  1126. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  1127. 'The pleasure of your ass being double fucked means you also cum, visibly orgasming on camera alongside the guys.'
  1128. $orgasm_or = 'yes'
  1129. gs 'arousal', 'anal', 5, 'exhibitionism', 'group'
  1130. gs 'arousal', 'end'
  1131. gs 'stat'
  1132. act 'Take a shower': gt 'pornstudio', 'shower'
  1133. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1134. end
  1135. else
  1136. act 'Block out everything but the pleasure and let yourself orgasm (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1137. end
  1138. gs 'pornfilm', '13a'
  1139. else
  1140. gs 'pornfilm', '13a'
  1141. end
  1142. end
  1143. end
  1144. end
  1145. end
  1146. if $ARGS[0] = '13a':
  1147. act 'Fake orgasm':
  1148. *clr & cla
  1149. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4" width="400"></video></center>'
  1150. 'The first drops of sperm leak from your pussy as <<$paktor[3]>> and <<$paktor[4]>> switch places with <<$paktor[1]>> and <<$paktor[2]>>. You give them both a quick blowjob before <<$paktor[3]>> lies on the bed and pulls you on top of him, sliding his cock into your ass. <<$paktor[4]>> moves in behind and inserts his dick into your already stretched hole. Despite the tightness, the guys quickly find a rhythm.'
  1151. 'You fake an orgasm for the camera while you wait for them to finish.'
  1152. gs 'arousal', 'anal', 5, 'exhibitionism', 'group'
  1153. gs 'arousal', 'end'
  1154. gs 'stat'
  1155. act 'Take a shower': gt 'pornstudio', 'shower'
  1156. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1157. end
  1158. end
  1159. if $ARGS[0] = '14':
  1160. porngang += 5
  1161. pornexhib += 5
  1162. pfType = 1
  1163. *clr & cla
  1164. gs 'fame', 'city', 'porn', 40
  1165. gang += 1
  1166. guy += 50
  1167. $orgasm_or = 'no'
  1168. gs 'stat'
  1169. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  1170. 'On the scene there are fifty guys standing around, and you believe this many actors would cost a fortune. Luckily for the studio, these guys are all your fans and they came just for the chance to fuck you. They are all nervously talking, and watching your previous works on monitors all around the huge hall.'
  1171. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/touching.mp4" width="500"></video></center>'
  1172. 'You lie down on the stage and let them touch you to get them into the mood.'
  1173. gs 'arousal', 'foreplay', 60, 'gangbang', 'exhibitionism'
  1174. gs 'stat'
  1175. act 'Undress and lie on the bed':
  1176. *clr & cla
  1177. bj50 = rand(0,8)
  1178. hj50 = rand(0,8)
  1179. lip50 = rand(0,8)
  1180. anal50 = rand(0,8)
  1181. bukk50 = rand(0,8)
  1182. sex50 = 50 - bj50 - hj50 - lip50 - anal50 - bukk50
  1183. stat['vaginal'] += 50-anal50
  1184. if bj50 > 5:pornbj += 1
  1185. if hj50 > 5:
  1186. pornhj += 1 & pornbukk += 1
  1187. elseif hj50 > 5:
  1188. pornhj += 1
  1189. end
  1190. if lip50 > 5:pornbj += 1 & pornswall += 1
  1191. if anal50 > 5:pornanal += 1
  1192. if bukk50 > 5:pornbukk += 1
  1193. if sex50 > 45:
  1194. pornvag += 5
  1195. porncream += 5
  1196. elseif sex50 > 35:
  1197. pornvag += 4
  1198. porncream += 4
  1199. elseif sex50 > 25:
  1200. pornvag += 3
  1201. porncream += 3
  1202. elseif sex50 > 15:
  1203. pornvag += 2
  1204. porncream += 2
  1205. elseif sex50 > 5:
  1206. pornvag += 1
  1207. porncream += 1
  1208. end
  1209. sexpartkno = 0
  1210. pfcounter = 0
  1211. :gbblow
  1212. if bj50 > 0:
  1213. gs 'npcgeneratec', 0, 'Porn Fan', rand(22,38)
  1214. !! Precum pregnancy check
  1215. cumnostd = 1
  1216. gs 'cum_call', 'precum', 'Porn Fan', 0, 0, 10000, 1
  1217. cumnostd = 1
  1218. gs 'cum_call', 'mouth', 'Porn Fan', 0, 0, 10000, 40
  1219. bj50 -= 1
  1220. stat['bj'] += 1
  1221. swallow += 1
  1222. end
  1223. if bj50 > 0: jump 'gbblow'
  1224. :gbhand
  1225. if hj50 > 0:
  1226. gs 'npcgeneratec', 0, 'Porn Fan', rand(22,38)
  1227. !! Precum pregnancy check
  1228. cumnostd = 1
  1229. gs 'cum_call', 'precum', 'Porn Fan', 0, 0, 10000, 1
  1230. gs 'cum_call', 'hands', 'Porn Fan', 0, 0, 10000, 40
  1231. hj50 -= 1
  1232. stat['hj'] += 1
  1233. end
  1234. if hj50 > 0: jump 'gbhand'
  1235. :gbface
  1236. if lip50 > 0:
  1237. gs 'npcgeneratec', 0, 'Porn Fan', rand(22,38)
  1238. !! Precum pregnancy check
  1239. cumnostd = 1
  1240. gs 'cum_call', 'precum', 'Porn Fan', 0, 0, 10000, 1
  1241. if rand(0,1)=0:
  1242. gs 'cum_call', 'face', 'Porn Fan', 0, 0, 10000, 40
  1243. else
  1244. gs 'cum_call', 'hair', 'Porn Fan', 0, 0, 10000, 40
  1245. end
  1246. lip50 -= 1
  1247. facial += 1
  1248. end
  1249. if lip50 > 0: jump 'gbface'
  1250. :gbass
  1251. if anal50 > 0:
  1252. gs 'npcgeneratec', 0, 'Porn Fan', rand(22,38)
  1253. !! Precum pregnancy check
  1254. cumnostd = 1
  1255. gs 'cum_call', 'precum', 'Porn Fan', 0, 0, 10000, 1
  1256. cumnostd = 1
  1257. gs 'cum_call', 'anus', 'Porn Fan', 0, 0, 10000, 40
  1258. anal50 -= 1
  1259. stat['anal'] += 1
  1260. end
  1261. if anal50 > 0: jump 'gbass'
  1262. :gbbukk
  1263. if bukk50 > 0:
  1264. gs 'npcgeneratec', 0, 'Porn Fan', rand(22,38)
  1265. !! Precum pregnancy check
  1266. cumnostd = 1
  1267. gs 'cum_call', 'precum', 'Porn Fan', 0, 0, 10000, 1
  1268. bukkloc = rand(0,6)
  1269. if bukkloc = 0:
  1270. gs 'cum_call', 'labia', 'Porn Fan', 0, 0, 10000, 40
  1271. elseif bukkloc = 1:
  1272. gs 'cum_call', 'butt', 'Porn Fan', 0, 0, 10000, 40
  1273. elseif bukkloc = 2:
  1274. gs 'cum_call', 'back', 'Porn Fan', 0, 0, 10000, 40
  1275. elseif bukkloc = 3:
  1276. gs 'cum_call', 'legs', 'Porn Fan', 0, 0, 10000, 40
  1277. elseif bukkloc = 4:
  1278. gs 'cum_call', 'arms', 'Porn Fan', 0, 0, 10000, 40
  1279. elseif bukkloc = 5:
  1280. gs 'cum_call', 'stomach', 'Porn Fan', 0, 0, 10000, 40
  1281. else
  1282. gs 'cum_call', 'breasts', 'Porn Fan', 0, 0, 10000, 40
  1283. end
  1284. bukk50 -= 1
  1285. end
  1286. if bukk50 > 0: jump 'gbbukk'
  1287. :gbsex
  1288. if sex50 > 0:
  1289. gs 'npcgeneratec', 0, 'Porn Fan', rand(22,38)
  1290. gs 'boyStat', $npclastgenerated
  1291. pfcounter += 1
  1292. cumnostd = 1
  1293. gs 'cum_call', '', 'Porn Fan', 0, 0, 10000, 40
  1294. sex50 -= 1
  1295. end
  1296. if sex50 > 0: jump 'gbsex'
  1297. gangOrg = 0
  1298. !if pcs_horny > 70 and pcs_inhib > 80:gangOrg = rand(1,5) & orgazm += gangOrg & pcs_horny = rand(0,50)
  1299. !if gangOrg = 1:
  1300. ! $gangorg = ' and you still managed to have an orgasm.'
  1301. ! $orgasm_or = 'yes'
  1302. !elseif gangOrg > 0:
  1303. ! $gangorg = ' and you still managed to orgasm <<gangOrg>> times.'
  1304. ! $orgasm_or = 'yes'
  1305. !else
  1306. ! $gangorg = '.'
  1307. !end
  1308. !orgasmbonus += gangOrg*10
  1309. !porngasm += gangOrg
  1310. gs 'stat'
  1311. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/fuckfifty<<rand(0,5)>>.mp4" width="500"></video></center>'
  1312. 'Your fans gather around and start to fuck you with great enthusiasm, but little technique. Most of them cum almost immediately, but since there are dozens of them, it doesn''t hurt the shoot, it even heightens the quality<<$gangorg>> It takes hours of constant fucking to finish with all of the guys.'
  1313. ! Going to try to simulate orgasms and count them along the way. Had to adjust the arousal calls to not result in constant orgasming. Sicaa
  1314. :gangbang_orgasm_loop
  1315. gangbang_loop_counter += 1
  1316. ! 5 rounds of 72min to get the same 5 max possible orgasms as before
  1317. minut += 72
  1318. gs 'arousal', 'vaginal', -10, 'gangbang', 'exhibitionism'
  1319. $orgasm_or = 'no'
  1320. ! Made Sveta''s inhibitions the deciding factor for orgasming in a gangbang
  1321. ! After testing this came out roughly as: 25 = 0-2, 50 = 1-3, 75 = 2-4, 100 = 3-5
  1322. if orgasm_buildup >= 400 - (3*pcs_inhib):
  1323. gangOrg += 1
  1324. $orgasm_txt = ''
  1325. $orgasm_or = 'custom'
  1326. end
  1327. if gangbang_loop_counter < 5: jump 'gangbang_orgasm_loop'
  1328. killvar 'gangbang_loop_counter'
  1329. killvar '$orgasm_or'
  1330. if gangOrg > 0: 'During the shoot you managed to ' + iif(gangOrg = 1, 'have one orgasm.', 'orgasm <<gangOrg>> times.')
  1331. orgasmbonus += gangOrg*10
  1332. porngasm += gangOrg
  1333. !gs 'arousal', 'vaginal', 360, 'gangbang', 'exhibitionism'
  1334. gs 'arousal', 'end'
  1335. gs 'stat'
  1336. act 'Take a shower': gt 'pornstudio', 'shower'
  1337. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1338. end
  1339. end
  1340. if $ARGS[0] = '15':
  1341. if rand(0,1) = 0:pornbj += 1
  1342. pornanal += 1
  1343. if rand(0,2) = 0:porngang += 1
  1344. porncream += 1
  1345. pfType = 1
  1346. *clr & cla
  1347. city_porn += 20
  1348. minut += 30
  1349. gs 'stat'
  1350. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  1351. 'To the side stands the actor <<$pakter[1]>>, stroking his member.'
  1352. act 'Undress and start':
  1353. *clr & cla
  1354. pornbj += 1
  1355. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj.mp4"></video></center>'
  1356. '<<$pakter[1]>> sits before a TV. You walk up to him while disrobing and kneel between his legs, taking his cock in your mouth and begin sucking the head of his penis.'
  1357. gs 'arousal', 'bj', 30, 'exhibitionism'
  1358. gs 'stat'
  1359. act 'Keep sucking':
  1360. *clr & cla
  1361. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/deep.mp4"></video></center>'
  1362. '<<$pakter[1]>> begins to fuck your mouth, driving his cock down your throat with every thrust.'
  1363. 'Finally he takes his cock out. You wipe the saliva from your mouth.'
  1364. gs 'arousal', 'bj', 15, 'exhibitionism'
  1365. gs 'stat'
  1366. act 'Penetration':
  1367. *clr & cla
  1368. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/analinsert.mp4"></video></center>'
  1369. '<<$pakter[1]>> positions himself as you turn and grind his cock between your ass cheeks, your saliva coating your asshole. <<$pakter[1]>> guides his cock to your now wet hole and penetrates you.'
  1370. gs 'arousal', 'anal', 15, 'exhibitionism'
  1371. gs 'stat'
  1372. act 'Anal':
  1373. *clr & cla
  1374. pcs_ass += 1
  1375. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/sex2.mp4"></video></center>'
  1376. '<<$pakter[1]>> enjoys the tightness as you ride his dick hard, occasionally sliding it out to show both <<$pakter[1]>> and the camera your stretched hole.'
  1377. gs 'arousal', 'anal', 15, 'exhibitionism'
  1378. gs 'stat'
  1379. if orgasm_buildup => 200 - pcs_inhib:
  1380. gs 'willpower', 'exhib', 'self', 'hard'
  1381. if orgasm_buildup => 300 - pcs_inhib:
  1382. act 'Orgasm': gs 'pornfilm', '15b'
  1383. elseif will_cost <= pcs_willpwr:
  1384. act 'Block out everything but the pleasure and let yourself orgasm (<<will_cost>> Willpower)':
  1385. gs 'willpower', 'pay', 'self'
  1386. gs 'pornfilm', '15b'
  1387. end
  1388. else
  1389. act 'Block out everything but the pleasure and let yourself orgasm (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1390. end
  1391. gs 'pornfilm', '15a'
  1392. else
  1393. gs 'pornfilm', '15a'
  1394. end
  1395. end
  1396. end
  1397. end
  1398. end
  1399. end
  1400. if $ARGS[0] = '15a':
  1401. act 'Fake orgasm':
  1402. *clr & cla
  1403. sexpartkno = 1
  1404. cumnostd = 1
  1405. gs 'cum_call', 'anus', $pakterID[1], 1, 0, 10000, 40
  1406. 'You feel <<$pakter[1]>> starting to twitch inside you, so you squeeze your asshole tightly around his dick as you fake an orgasm. You soon feel <<$pakter[1]>> unload in your ass.'
  1407. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porncpanal.mp4" width="400"></video></center>'
  1408. '<<$pakter[1]>> pulls out of your ass and you show your gaping hole to the camera as it leaks his load.'
  1409. gs 'arousal', 'anal', 5, 'exhibitionism'
  1410. gs 'arousal', 'end'
  1411. gs 'stat'
  1412. act 'Take a shower': gt 'pornstudio', 'shower'
  1413. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1414. end
  1415. end
  1416. if $ARGS[0] = '15b':
  1417. *clr & cla
  1418. sexpartkno = 1
  1419. orgasmbonus += 10
  1420. porngasm += 1
  1421. cumnostd = 1
  1422. gs 'cum_call', 'anus', $pakterID[1], 1, 0, 10000, 40
  1423. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porncpanal.mp4" width="400"></video></center>'
  1424. 'You are really getting into it and reach your orgasm. Your ass tightens around <<$pakter[1]>>, which sends him over the edge. You feel your bowels being flooded with warm cum.'
  1425. '<<$pakter[1]>> pulls out of your ass and you show your gaping hole to the camera as it leaks his load.'
  1426. $orgasm_or = 'yes'
  1427. gs 'arousal', 'anal', 5, 'exhibitionism'
  1428. gs 'arousal', 'end'
  1429. gs 'stat'
  1430. act 'Take a shower': gt 'pornstudio', 'shower'
  1431. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1432. end
  1433. if $ARGS[0] = '16':
  1434. if rand(0,2)=0:pornhj += 1
  1435. if rand(0,2)=0:pornbj += 1
  1436. pornanal += 1
  1437. pornbukk += 1
  1438. pfType = 0
  1439. *clr & cla
  1440. city_porn += 16
  1441. minut += 30
  1442. gs 'stat'
  1443. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  1444. 'To the side stands the actor <<$pakter[1]>>, stroking his inviting member.'
  1445. act 'Undress and start':
  1446. *clr & cla
  1447. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/hj.mp4"></video></center>'
  1448. '<<$pakter[1]>> sits on a sofa. You kneel before him, take his penis in your hand and begin to pleasure him.'
  1449. gs 'arousal', 'hj', 30, 'exhibitionism'
  1450. gs 'stat'
  1451. act 'Blow him':
  1452. *clr & cla
  1453. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj.mp4"></video></center>'
  1454. '<<$pakter[1]>> is rock hard in your hand and you passionately start to suck his dick like it''s the most delicious lollipop.'
  1455. gs 'arousal', 'bj', 5, 'exhibitionism'
  1456. gs 'stat'
  1457. act 'Rimjob':
  1458. *clr & cla
  1459. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/rimming.mp4"></video></center>'
  1460. 'You lie down on a nearby table and spread your ass as <<$pakter[1]>> begins to rim you, expertly flicking his tongue over your hole.'
  1461. gs 'arousal', 'rimming', 5, 'exhibitionism'
  1462. gs 'stat'
  1463. act 'Anal':
  1464. *clr & cla
  1465. pcs_anal += 1
  1466. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/sexanal.mp4"></video></center>'
  1467. 'Your asshole now wet and ready, <<$pakter[1]>> fingers your hole before standing and inserting his dick inside. He begins to fuck you hard, occasionally pulling out to show your gaping hole to the camera.'
  1468. gs 'arousal', 'anal', 15, 'exhibitionism'
  1469. gs 'stat'
  1470. act 'Climax':
  1471. *clr & cla
  1472. minut += 5
  1473. cumnostd = 1
  1474. gs 'cum_call', 'butt', $pakterID[1], 1, 0, 10000, 40
  1475. gs 'stat'
  1476. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/cumanal.mp4"></video></center>'
  1477. 'Just as he is about to cum, <<$pakter[1]>> pulls out and shoots his load over your ass.'
  1478. act 'Clean his cock':
  1479. *clr & cla
  1480. minut += 5
  1481. swallow += 1
  1482. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/bj2.mp4"></video></center>'
  1483. 'You quickly slide off the table and take his cock down your throat before licking his shaft clean, the camera getting a good shot of your cum covered ass as you do.'
  1484. gs 'arousal', 'end'
  1485. gs 'stat'
  1486. act 'Take a shower': gt 'pornstudio', 'shower'
  1487. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1488. end
  1489. end
  1490. end
  1491. end
  1492. end
  1493. end
  1494. end
  1495. if $ARGS[0] = '17':
  1496. porntrib += 1
  1497. porncuni += 1
  1498. pornlesbo += 1
  1499. pfType = 0
  1500. *clr & cla
  1501. city_porn += 16
  1502. minut += 30
  1503. gs 'stat'
  1504. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  1505. 'To the side sits the actress <<$paktress[1]>>, fondling her breasts while watching porn on a monitor.'
  1506. act 'Start':
  1507. *clr & cla
  1508. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo0.mp4"></video></center>'
  1509. 'The scene starts with you playing with <<$paktress[1]>>''s ass. You give her a firm slap on the rear and tease the camera by slowly pulling her panties halfway down before pulling them up again. You then quickly pull them down again, this time to her ankles. She gives the camera a view of her pussy and asshole before you push her onto the bed in front of you.'
  1510. gs 'arousal', 'foreplay_give', 5, 'exhibitionism'
  1511. gs 'stat'
  1512. act 'Eat her pussy':
  1513. *clr & cla
  1514. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo1.mp4"></video></center>'
  1515. 'You kneel before <<$paktress[1]>>, lifting her panties from her ankles and spreading her legs. You slowly trace lines along her labia with your tongue before running it between her lips and reaching her clit. You then quickly start flicking her clit, your tongue swirling over it as it begins to swell.'
  1516. gs 'arousal', 'cuni_give', 15, 'exhibitionism'
  1517. gs 'stat'
  1518. act 'Your turn':
  1519. *clr & cla
  1520. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo2.mp4"></video></center>'
  1521. 'After pleasing her for a while, you withdraw your tongue from her crotch as she quickly pulls you down onto your back. She lifts your legs and practically rips your panties off, tossing them aside. She wastes no time and buries her face right into your pussy, teasing your engorged clit as she vigorously eats you out, her tongue lapping up the juices that run from your pussy.'
  1522. gs 'arousal', 'cuni', 15, 'exhibitionism'
  1523. gs 'stat'
  1524. act 'Tribadism':
  1525. *clr & cla
  1526. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo3.mp4"></video></center>'
  1527. 'Satisfied with pleasing you with her tongue, <<$paktress[1]>> straddles you and holds your leg to one side as she brings her pussy down to meet your own. You let out a pleasured moan as your clits make contact. She then begins rocking her hips back and forth and you both enjoy the sensation as your wet labia makes it easy for her to slide herself across you.'
  1528. gs 'arousal', 'tribbing', 15, 'exhibitionism'
  1529. gs 'stat'
  1530. act 'Double dildo':
  1531. *clr & cla
  1532. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo4.mp4"></video></center>'
  1533. '<<$paktress[1]>> stops her movements and reaches over to grab a sizeable doubled headed dildo. She sucks on one end and slides it into your pussy. The toy buried firmly in your hole, she slides herself down onto the other end. She then starts to ride the dildo, her movements pushing it deeper into your pussy.'
  1534. gs 'arousal', 'vaginal_dildo', 15, 'exhibitionism'
  1535. gs 'stat'
  1536. act 'Finish':
  1537. *clr & cla
  1538. minut += 5
  1539. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/porgasm.mp4"></video></center>'
  1540. '<<$paktress[1]>> reaches her climax as she slams down on the dildo, sending it deep into her pussy. Her body is overwhelmed in pleasure as her juices run down the shaft of the dildo and onto your pussy. She withdraws the dildo from her pussy and pulls it out of you. You both suck the ends of it clean.'
  1541. gs 'arousal', 'end'
  1542. gs 'stat'
  1543. act 'Take a shower': gt 'pornstudio', 'shower'
  1544. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1545. end
  1546. end
  1547. end
  1548. end
  1549. end
  1550. end
  1551. end
  1552. if $ARGS[0] = '18':
  1553. porncuni += 1
  1554. pornlesbo += 1
  1555. pfType = 0
  1556. *clr & cla
  1557. city_porn += 16
  1558. minut += 30
  1559. gs 'stat'
  1560. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  1561. '<<$paktress[1]>> is sitting to the side, fondling her breasts while watching porn on a monitor.'
  1562. act 'Start':
  1563. *clr & cla
  1564. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo0.mp4"></video></center>'
  1565. 'The scene starts with you playing with <<$paktress[1]>>''s ass. You give her a firm slap on the rear and tease the camera by slowly pulling her panties halfway down before pulling them up again. You then quickly pull them down, this time to her ankles. She gives the camera a view of her pussy and asshole before you push her onto the bed in front of you.'
  1566. gs 'arousal', 'foreplay_give', 5, 'exhibitionism'
  1567. gs 'stat'
  1568. act 'Eat her pussy':
  1569. *clr & cla
  1570. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo1.mp4"></video></center>'
  1571. 'You kneel before <<$paktress[1]>>, lifting her panties from her ankles and spreading her legs. You slowly trace lines along her labia with your tongue before running it between her lips and reaching her clit. You then quickly start flicking her clit, your tongue swirling over it as it begins to swell.'
  1572. gs 'arousal', 'cuni_give', 15, 'exhibitionism'
  1573. gs 'stat'
  1574. act 'Your turn':
  1575. *clr & cla
  1576. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo2.mp4"></video></center>'
  1577. 'After pleasing her for a while, you withdraw your tongue from her crotch as she quickly pulls you down onto your back. She lifts your legs and practically rips your panties off, tossing them aside. She wastes no time and buries her face right into your pussy, teasing your engorged clit as she vigorously eats you out, her tongue lapping up the juices that run from your pussy.'
  1578. gs 'arousal', 'cuni', 15, 'exhibitionism'
  1579. gs 'stat'
  1580. act 'Get fucked':
  1581. *clr & cla
  1582. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo5.mp4"></video></center>'
  1583. 'You are lying on the bed as <<$paktress[1]>> moves off to the side and slips on a strapon dildo. She moves over to you as you slide down, take the plastic cock in your mouth and give her a fake BJ. She pushes you down onto the bed and climbs on top of you. She slides inside your pussy and begins to fuck you hard.'
  1584. gs 'arousal', 'vaginal_strap', 15, 'exhibitionism'
  1585. gs 'stat'
  1586. act 'Her turn':
  1587. *clr & cla
  1588. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo6.mp4"></video></center>'
  1589. 'After the vigorous pounding, <<$paktress[1]>> pulls out, slides the strapon off and gets on all fours as you stand and strap yourself in. She is on her knees before you begging you to fuck her ass and you are eager to comply. The plastic cock is coated in your juices and this makes it easy to push yourself into her awaiting hole. You begin to fuck her ass as she begs you to go harder.'
  1590. gs 'arousal', 'anal_strap_give', 15, 'exhibitionism'
  1591. gs 'stat'
  1592. act 'Finish':
  1593. *clr & cla
  1594. minut += 5
  1595. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/lesbo7.mp4"></video></center>'
  1596. 'The relentless ass fucking you give <<$paktress[1]>> is enough to bring her to orgasm. Her juices spray from her twitching pussy as her ass tightens around your fake cock. You pull out of her and the camera comes in for a shot of her stretched hole. The scene ends with you locking tongues with <<$paktress[1]>> '
  1597. gs 'arousal', 'end'
  1598. gs 'stat'
  1599. act 'Take a shower': gt 'pornstudio', 'shower'
  1600. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1601. end
  1602. end
  1603. end
  1604. end
  1605. end
  1606. end
  1607. end
  1608. if $ARGS[0] = '19':
  1609. pornbj += 1
  1610. pornvag += 1
  1611. pornanal += 1
  1612. pornswall += 1
  1613. porngang += 1
  1614. pfType = 0
  1615. *clr & cla
  1616. gs 'fame', 'city', 'porn', 25
  1617. minut += 30
  1618. gang += 1
  1619. gs 'stat'
  1620. 'The set is already bustling with assistants setting up lighting, so that there aren''t any shadows.'
  1621. '<<$pakter[1]>> is watching porn on a monitor, getting himself ready while <<$paktress[1]>> is having her make up touched up.'
  1622. act 'Undress and start':
  1623. *clr & cla
  1624. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff0.mp4"></video></center>'
  1625. 'The camera starts rolling and comes for a close up of you and <<$paktress[1]>>. As it does, she grabs your ass and gives it a jiggle for the camera. <<$pakter[1]>> moves into the scene and you both kneel before him.'
  1626. act 'Suck':
  1627. *clr & cla
  1628. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff1.mp4"></video></center>'
  1629. 'You take <<$pakter[1]>>''s cock into your mouth and begin sucking on his tip as <<$paktress[1]>> runs her tongue along his shaft. You then take him deeper into your throat as <<$paktress[1]>> playfully sucks on his balls.'
  1630. gs 'arousal', 'bj', 15, 'exhibitionism', 'group'
  1631. gs 'stat'
  1632. act 'Fuck':
  1633. *clr & cla
  1634. pcs_vag += 1
  1635. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff2.mp4"></video></center>'
  1636. '<<$paktress[1]>> remains on her knees as you move up and guide <<$patker[1]>>''s cock into your pussy. You start riding him as <<$paktress[1]>> buries her face in your pussy and quickly starts flicking her tongue over your clit, waves of pleasure overwhelming you.'
  1637. !! Precum pregnancy check
  1638. cumnostd = 1
  1639. gs 'cum_call', 'precum', $pakterID[1], 1, 0, 10000, 1
  1640. gs 'arousal', 'bj', 15, 'exhibitionism', 'group'
  1641. gs 'arousal', 'vaginal', 15, 'exhibitionism', 'group'
  1642. gs 'arousal', 'cuni', 15, 'exhibitionism', 'group'
  1643. gs 'stat'
  1644. act 'Anal':
  1645. *clr & cla
  1646. pcs_ass += 1
  1647. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff3.mp4"></video></center>'
  1648. '<<$paktress[1]>> gets up from the floor and lies down on the bed. You straddle her, your pussy sitting before her face. <<$pakter[1]>> moves in behind and slowly pushes his cock into your ass. <<$paktress[1]>> playfully licks your swollen clit as he starts fucking your ass hard.'
  1649. gs 'arousal', 'cuni', 15, 'exhibitionism', 'group'
  1650. gs 'arousal', 'anal', 15, 'exhibitionism', 'group'
  1651. gs 'stat'
  1652. act 'Creampie':
  1653. *clr & cla
  1654. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff4.mp4"></video></center>'
  1655. 'You eventually feel <<$pakter[1]>> starting to twitch and feel a sudden warmth flood your ass. He pulls out and a stream of cum soon follows, running down your pussy and into <<$paktress[1]>>''s awaiting mouth.'
  1656. cumnostd = 1
  1657. gs 'cum_call', 'anus', $pakterID[1], 1, 0, 10000, 20
  1658. gs 'arousal', 'anal', 15, 'exhibitionism', 'group'
  1659. gs 'arousal', 'cuni', 15, 'exhibitionism', 'group'
  1660. gs 'stat'
  1661. act 'Cum sharing':
  1662. *clr & cla
  1663. minut += 5
  1664. pornswall += 1
  1665. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff5.mp4"></video></center>'
  1666. 'You quickly climb off <<$paktress[1]>> and kneel before her as she opens her mouth and <<$pakter[1]>>''s load drools from her tongue and into your mouth. You show the camera your cum filled mouth before swallowing the cum and finishing the scene making out with <<$paktress[1]>>'
  1667. cumnostd = 1
  1668. gs 'cum_call', 'mouth', $pakterID[1], 1, 0, 10000, 20
  1669. act 'Take a shower': gt 'pornstudio', 'shower'
  1670. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1671. end
  1672. end
  1673. end
  1674. end
  1675. end
  1676. end
  1677. end
  1678. if $ARGS[0] = '20':
  1679. pornbj += 1
  1680. pornswall += 1
  1681. porngang += 1
  1682. pfType = 0
  1683. *clr & cla
  1684. gs 'fame', 'city', 'porn', 25
  1685. minut += 30
  1686. gang += 1
  1687. gs 'stat'
  1688. 'The set is already bustling with assistants setting up lighting, so that there are any shadows.'
  1689. '<<$pakter[1]>> is watching porn on a monitor, getting himself ready while <<$paktress[1]>> is having her make up touched up.'
  1690. act 'Undress and start':
  1691. *clr & cla
  1692. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff0.mp4"></video></center>'
  1693. 'The camera starts rolling and comes for a close up of you and <<$paktress[1]>>. As it does, you grab her ass and give it a jiggle for the camera. <<$pakter[1]>> moves into the scene and you both kneel before him.'
  1694. act 'Suck':
  1695. *clr & cla
  1696. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff1.mp4"></video></center>'
  1697. '<<$paktress[1]>> wastes no time and takes <<$pakter[1]>>''s cock right down her throat as you get down low and suck his balls.'
  1698. gs 'arousal', 'bj', 15, 'exhibitionism', 'group'
  1699. gs 'stat'
  1700. act 'Fuck':
  1701. *clr & cla
  1702. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff2.mp4"></video></center>'
  1703. 'You remain on your knees as <<$paktress[1]>> straddles <<$pakter[1]>>, slides down onto his cock and starts riding him. You take your place and bury your face into her pussy, running your tongue over her clit as she takes <<$pakter[1]>> deep inside her. She shrieks in pleasure and you''re sure that she orgasms at least once.'
  1704. gs 'arousal', 'cuni_give', 15, 'exhibitionism', 'group'
  1705. gs 'stat'
  1706. act 'Anal':
  1707. *clr & cla
  1708. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff3.mp4"></video></center>'
  1709. 'You lie down on the bed, <<$paktress[1]>> straddling you, her glistening pussy begging for you to please it. <<$pakter[1]>> moves in behind and inserts himself into her ass and starts to pound her, <<$paktress[1]>> begging him to go harder. You start flicking your tongue over <<$paktress[1]>>''s now massively engorged clit.'
  1710. gs 'arousal', 'cuni_give', 15, 'exhibitionism', 'group'
  1711. gs 'stat'
  1712. act 'Creampie':
  1713. *clr & cla
  1714. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff4.mp4"></video></center>'
  1715. 'You pull your face out of <<$paktress[1]>>''s crotch in time to see <<$pakter[1]>>''s balls twitching as he unloads inside her ass. At the same time, you see her pussy convulsing and she screams in pleasure as they reach orgasm together. You open your mouth as he pulls out of her, and a stream of cum runs from her hole down onto your tongue.'
  1716. cumnostd = 1
  1717. gs 'cum_call', 'mouth', $pakterID[1], 1, 0, 10000, 30
  1718. gs 'arousal', 'cuni_give', 15, 'exhibitionism', 'group'
  1719. gs 'stat'
  1720. act 'Cum sharing':
  1721. *clr & cla
  1722. minut += 5
  1723. '<center><video autoplay loop src="images/locations/city/citycenter/studio/sex/mff5.mp4"></video></center>'
  1724. '<<$paktress[1]>> climbs off and kneels in front of you as you open your mouth and allow <<$pakter[1]>>''s load to drool from your tongue and into her mouth. She then shows her cum filled mouth to the camera and makes a rather perverted show of swallowing it. The scene ends with the two of you making out.'
  1725. act 'Take a shower': gt 'pornstudio', 'shower'
  1726. act 'Don''t bother to clean up': gt 'pornstudio', 'postvideo'
  1727. end
  1728. end
  1729. end
  1730. end
  1731. end
  1732. end
  1733. end
  1734. --- pornfilm ---------------------------------