pornhist.qsrc 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. # pornhist
  2. !! Short description of made movies, without details
  3. if $ARGS[0] = 'short':
  4. i = 1
  5. $pfilmhistory = ''
  6. :pornhistloop
  7. dynamic $pornfilmdesc, pornfilmType[i]
  8. if pornfilmMonth[i] >= 10 and pornfilmDay[i] >= 10:
  9. $pornfilmDate[i] = '<<pornfilmYear[i]>>-<<pornfilmMonth[i]>>-<<pornfilmDay[i]>>'
  10. elseif pornfilmMonth[i] >= 10 and pornfilmDay[i] < 10:
  11. $pornfilmDate[i] = '<<pornfilmYear[i]>>-<<pornfilmMonth[i]>>-0<<pornfilmDay[i]>>'
  12. elseif pornfilmMonth[i] < 10 and pornfilmDay[i] >= 10:
  13. $pornfilmDate[i] = '<<pornfilmYear[i]>>-0<<pornfilmMonth[i]>>-<<pornfilmDay[i]>>'
  14. else
  15. $pornfilmDate[i] = '<<pornfilmYear[i]>>-0<<pornfilmMonth[i]>>-0<<pornfilmDay[i]>>'
  16. end
  17. if $porntitle[i] = '':
  18. $pfilmhistory += '● <b><<i>>. Movie</b><br><font size=2></font><br>'
  19. else
  20. if i = 1:
  21. $pfilmhistory += '● <b>'+$porntitle[i]+'<<$pfname>></b><br><font size=2>'+$pfilmtext+'</font><br>'
  22. else
  23. $pfilmhistory += '● <b>'+$porntitle[i]+'</b><br><font size=2>'+$pfilmtext+'</font><br>'
  24. end
  25. end
  26. if i < film: i += 1 & jump 'pornhistloop'
  27. end
  28. !! Detailed description of movies, only available after selecting the "Filmography" link
  29. if $ARGS[0] = 'pdetail':
  30. *clr & cla
  31. '<center><h1>Filmography of <font color="magenta"><<$pfname>></font></h1></center>'
  32. '<center><table width="90%" cellspacing="0" cellpadding="20" valign="top"><tr>'
  33. '<td cellspacing="0" cellpadding="0" valign="top">'
  34. i = 1
  35. killvar 'firstvariable'
  36. killvar 'firstvariable2'
  37. :pornhistloop2
  38. dynamic $pornfilmdesc, pornfilmType[i]
  39. if $porntitle[i] = '':
  40. if firstvariable = 0:firstvariable = 1 & fvvalue = i
  41. '<b><a href="exec:$porntitle[fvvalue] = input(''<font color=#FF0000>WARNING!</font> No matter where you clicked, it will name the <b>first</b> unnamed movie! This action can be done only once!'') & gs ''pornhist'', ''pdetail''"><<i>>. Movie</a></b>'
  42. else
  43. if i = 1:
  44. '<b><font color="brown"><<$porntitle[i]>><<$pfname>></font></b>'
  45. else
  46. '<b><font color="brown"><<$porntitle[i]>></font></b>'
  47. end
  48. end
  49. if daystart - porndaystart[i] = 0:
  50. ' <b>Production date:</b> <font size=2><<$pornfilmDate[i]>> (Today)</font>'
  51. elseif daystart - porndaystart[i] = 1:
  52. ' <b>Production date:</b> <font size=2><<$pornfilmDate[i]>> (Yesterday)</font>'
  53. else
  54. ' <b>Production date:</b> <font size=2><<$pornfilmDate[i]>> (<<daystart - porndaystart[i]>> days ago)</font>'
  55. end
  56. ' <b>Actress age:</b> <font size=2><<pornfilmActAge[i]>></font> <font size=2>(Appears: <<pornfilmAppAge[i]>>)</font>'
  57. if $pornfilmActor[i] = 'Fifty fans of':
  58. ' <b>Actors:</b> <font size=2><<$pornfilmActor[i]>> <<$pfname>> and <<$pfname>> herself</font>'
  59. else
  60. ' <b>Actors:</b> <font size=2><<$pornfilmActor[i]>> and <<$pfname>></font>'
  61. end
  62. ' <b>Income:</b> <font size=2><<pornfilmCash[i]>>₽</font>'
  63. if pornfilmacting[i] < 15:
  64. ' <b>Acting:</b> <font size=2>Your acting was as fake as a bad boobjob. Did you get paid for this?</font>'
  65. elseif pornfilmacting[i] < 30:
  66. ' <b>Acting:</b> <font size=2>You were acting quite fake, but it was passable.</font>'
  67. elseif pornfilmacting[i] < 45:
  68. ' <b>Acting:</b> <font size=2>You probably could have done better, but at least you were not totally unconvincing.</font>'
  69. elseif pornfilmacting[i] < 60:
  70. ' <b>Acting:</b> <font size=2>You were actually acting, even if it wasn''t entirely convincing.</font>'
  71. elseif pornfilmacting[i] < 75:
  72. ' <b>Acting:</b> <font size=2>You were acting really well.</font>'
  73. elseif pornfilmacting[i] < 90:
  74. ' <b>Acting:</b> <font size=2>As a professional actress, everybody believed your every gesture and sentence.</font>'
  75. else
  76. ' <b>Acting:</b> <font size=2>Your performance was phenomenal. You may actually win some awards with this one.</font>'
  77. end
  78. if pornfilmvnesh[i] >= 9:
  79. ' <b>Look:</b> <font size=2>Amazingly beautiful.</font>'
  80. elseif pornfilmvnesh[i] >= 7:
  81. ' <b>Look:</b> <font size=2>Beautiful.</font>'
  82. elseif pornfilmvnesh[i] >= 5:
  83. ' <b>Look:</b> <font size=2>Attractive.</font>'
  84. else
  85. ' <b>Look:</b> <font size=2>Unnoticeable.</font>'
  86. end
  87. ' <b>Description:</b> <font size=2><<$pfilmtext>></font>'
  88. if $pornfilmstory[i] = '':
  89. if firstvariable2 = 0:firstvariable2 = 1 & fvvalue2 = i
  90. ' <b>Story:</b> <font size=2><a href="exec:$pornfilmstory[fvvalue2] = input(''<font color=#FF0000>WARNING!</font> No matter where you clicked, you will enter the story of the <b>first</b> movie missing it! This action can be done only once!'') & gs ''pornhist'', ''pdetail''">Missing story</a></font>'
  91. else
  92. ' <b>Story:</b> <font color=#1B4532 size=2><<$pornfilmstory[i]>></font>'
  93. end
  94. ' <b>Tags: <font color=#541717 size=2><<$pfilmtags>></font></b>'
  95. if pornDanger[i] = 1 and pfType = 1:' <font color="red" size=2><b>You were unprotected and fertile during the shoot.</b></font>'
  96. killvar '$pfilmtags'
  97. if i < film:
  98. *p '<font color="sienna"><hr></font>'
  99. i += 1
  100. jump 'pornhistloop2'
  101. end
  102. act 'Return to Reputation': killvar 'pornfilmdesc' & killvar 'porntag' & gt 'obj_din', 'reputation'
  103. '</td></tr></table></center>'
  104. end
  105. !! Dynamic of selectable porn movies, called from:
  106. !! pornhist: 'short', 'pdetail'
  107. !! pornschedule: 'pornmiss'
  108. !! pornstudio: 'options', 'medical', 'postvideo'
  109. $pornfilmdesc = {
  110. film_type = ARGS[0]
  111. killvar '$pstory'
  112. if tits >= 4:
  113. $porndesc[1] = 'Titfuck'
  114. else
  115. $porndesc[1] = 'Handjob'
  116. end
  117. $porndesc[2] = 'Blowjob'
  118. $porndesc[3] = 'Vaginal sex with facial'
  119. $porndesc[4] = 'Vaginal and anal sex with facial'
  120. $porndesc[5] = 'Threesome with anal creampie and facial'
  121. $porndesc[6] = 'Threesome with double penetration, facial and swallowing'
  122. $porndesc[7] = 'Vaginal sex with creampie'
  123. $porndesc[8] = 'Double penetration with vaginal creampies'
  124. $porndesc[9] = 'Spitroast with two guys with creampie and swallowing'
  125. $porndesc[10] = 'Four guy gangbang with vaginal sex and cumshots'
  126. $porndesc[11] = 'Four guy gangbang with vaginal sex and creampies'
  127. $porndesc[12] = 'Four guy gangbang with anal sex and anal creampies'
  128. $porndesc[13] = 'Two double penetration with four guys, vaginal and anal creampies'
  129. $porndesc[14] = 'Gangbang with 50 guys'
  130. $porndesc[15] = 'Anal sex with anal creampie'
  131. $porndesc[16] = 'Anal sex with cumshot'
  132. $porndesc[17] = 'Lesbian sex with double dildo'
  133. $porndesc[18] = 'Lesbian sex with strapon'
  134. $porndesc[19] = 'Primary role in MFF threesome'
  135. $porndesc[20] = 'Secondary role in MFF threesome'
  136. if film_type = 1:
  137. pfType = 0
  138. pcash = 20
  139. pfactor = 1
  140. actbonus = 1
  141. if tits >= 4:
  142. $tags = 'titjob, handjob, cumshot'
  143. $pfilmtext = 'You gave a guy a titfuck and he came on your tits.'
  144. else
  145. $tags = 'handjob, cumshot'
  146. $pfilmtext = 'You jerked off a guy and he came on your tits.'
  147. end
  148. elseif film_type = 2:
  149. pfType = 0
  150. pcash = 30
  151. pfactor = 1
  152. actbonus = 1
  153. $tags = 'blowjob, facial'
  154. $pfilmtext = 'You gave a guy a blowjob and got a facial.'
  155. elseif film_type = 3:
  156. pfType = 0
  157. pcash = 50
  158. pfactor = 1
  159. actbonus = rand(1,2)
  160. $tags = 'blowjob, vaginal, facial'
  161. $pfilmtext = 'You gave a guy a blowjob and he fucked you before giving you a facial.'
  162. elseif film_type = 4:
  163. pfType = 0
  164. pcash = 60
  165. pfactor = 1
  166. actbonus = rand(1,2)
  167. $tags = 'blowjob, facial, vaginal, anal'
  168. $pfilmtext = 'You gave a guy a blowjob and he fucked your pussy and ass before giving you a facial.'
  169. elseif film_type = 5:
  170. pfType = 0
  171. pcash = 70
  172. pfactor = 2
  173. actbonus = rand(1,3)
  174. $tags = 'facial, vaginal, anal, blowjob, anal creampie'
  175. $pfilmtext = 'A guy fucked your pussy and ass and came in your ass while you sucked off another guy who gave you a facial.'
  176. elseif film_type = 6:
  177. pfType = 0
  178. pcash = 90
  179. pfactor = 2
  180. actbonus = rand(1,3)
  181. $tags = 'DP, vaginal, anal, blowjob, facial, swallowing'
  182. $pfilmtext = 'A guy fucked your pussy and ass while you sucked off another guy. They then double penetrated you before cumming on your face. You swallowed their loads.'
  183. elseif film_type = 7:
  184. pfType = 1
  185. pcash = 80
  186. pfactor = 1
  187. actbonus = rand(1,2)
  188. $tags = 'vaginal'
  189. $pfilmtext = 'You gave a guy a blowjob before he fucked you and gave you a creampie.'
  190. elseif film_type = 8:
  191. pfType = 1
  192. pcash = 100
  193. pfactor = 2
  194. actbonus = rand(1,2)
  195. $tags = 'DP, vaginal, anal'
  196. $pfilmtext = 'Two guys fucked you in double penetration before giving you a double creampie.'
  197. elseif film_type = 9:
  198. pfType = 1
  199. pcash = 90
  200. pfactor = 2
  201. actbonus = rand(1,3)
  202. $tags = 'blowjob, vaginal, swallowing'
  203. $pfilmtext = 'Two guys fucked your pussy and mouth. One gave you a creampie and the other came in your mouth and you swallowed.'
  204. elseif film_type = 10:
  205. pfType = 1
  206. pcash = 120
  207. pfactor = 4
  208. actbonus = rand(2,3)
  209. $tags = 'vaginal, cumshot'
  210. $pfilmtext = 'Four guys fucked your pussy and they all ejaculated on your body and face.'
  211. elseif film_type = 11:
  212. pfType = 1
  213. pcash = 150
  214. pfactor = 4
  215. actbonus = rand(2,3)
  216. $tags = 'vaginal'
  217. $pfilmtext = 'Four guys fucked your pussy, giving you four creampies.'
  218. elseif film_type = 12:
  219. pfType = 0
  220. pcash = 150
  221. pfactor = 4
  222. actbonus = rand(2,3)
  223. $tags = 'anal, anal creampie'
  224. $pfilmtext = 'Four guys fucked your ass, giving you four anal creampies.'
  225. elseif film_type = 13:
  226. pfType = 1
  227. pcash = 150
  228. pfactor = 4
  229. actbonus = rand(2,3)
  230. $tags = 'DP, vaginal, anal'
  231. $pfilmtext = 'Four guys fucked you in double penetration in pairs. You got two double creampies.'
  232. elseif film_type = 14:
  233. pfType = 1
  234. pcash = 300
  235. pfactor = 50
  236. actbonus = rand(1,2)
  237. $tags = 'vaginal, anal, blowjob, cumshot, facial, swallowing'
  238. $pfilmtext = 'Fifty of your fans fucked you however they could. Almost all of them came in your pussy.'
  239. $pstory = 'You called out to your fans on the internet, giving them an opportunity to fuck you however they like.'
  240. elseif film_type = 15:
  241. pfType = 0
  242. pcash = 50
  243. pfactor = 1
  244. actbonus = rand(1,2)
  245. $tags = 'blowjob, anal, anal creampie'
  246. $pfilmtext = 'You gave a guy a blowjob before he fucked your ass and gave you an anal creampie.'
  247. elseif film_type = 16:
  248. pfType = 0
  249. pcash = 50
  250. pfactor = 1
  251. actbonus = rand(1,2)
  252. $tags = 'blowjob, anal, cumshot'
  253. $pfilmtext = 'You gave a guy a blowjob and he fucked your ass. He came over your ass.'
  254. elseif film_type = 17:
  255. pfType = 0
  256. pcash = 50
  257. pfactress = 1
  258. actbonus = rand(1,2)
  259. $tags = 'tribbing, double dildo, vaginal'
  260. $pfilmtext = 'You had sex with a girl using a double dildo.'
  261. elseif film_type = 18:
  262. pfType = 0
  263. pcash = 50
  264. pfactress = 1
  265. actbonus = rand(1,2)
  266. $tags = 'strapon, vaginal, anal'
  267. $pfilmtext = 'You had sex with a girl using a strapon.'
  268. elseif film_type = 19:
  269. pfType = 0
  270. pcash = 100
  271. pfactor = 1
  272. pfactress = 1
  273. actbonus = rand(2,3)
  274. $tags = 'mff, blowjob, anal, cumshare'
  275. $pfilmtext = 'You took part in an MFF threesome, sucking a guy off before he fucked your ass while the girl licked your pussy. You got an anal creampie and shared it with the girl.'
  276. elseif film_type = 20:
  277. pfType = 0
  278. pcash = 100
  279. pfactor = 1
  280. pfactress = 1
  281. actbonus = rand(2,3)
  282. $tags = 'mff, blowjob, anal, creampie, cumshare, cuni'
  283. $pfilmtext = 'You took part in an MFF threesome, sucking him off before he fucked her ass while you licked her pussy. She shared her anal creampie with you.'
  284. end
  285. dynamic $porntag
  286. }
  287. $porntag = {
  288. if pornfilmAppAge[i] < 20:
  289. $pfilmtags = 'teen'
  290. elseif pornfilmAppAge[i] >= 40:
  291. $pfilmtags = 'mature'
  292. else
  293. $pfilmtags = ''
  294. end
  295. if pornfilmpreg[i] = 1:
  296. if $pfilmtags <> '':
  297. $pfilmtags+=', pregnant'
  298. else
  299. $pfilmtags = 'pregnant'
  300. end
  301. end
  302. if pfactor = 0 and pfactress > 0:
  303. if $pfilmtags <> '':
  304. $pfilmtags += ', lesbian'
  305. else
  306. $pfilmtags = 'lesbian'
  307. end
  308. end
  309. if pfactor > 2 and pfactress = 0:
  310. if $pfilmtags <> '':
  311. $pfilmtags += ', gangbang'
  312. else
  313. $pfilmtags = 'gangbang'
  314. end
  315. elseif pfactor > 2 and pfactress > 1:
  316. if $pfilmtags <> '':
  317. $pfilmtags += ', orgy'
  318. else
  319. $pfilmtags = 'orgy'
  320. end
  321. elseif pfactor = 2 and pfactress = 0:
  322. if $pfilmtags <> '':
  323. $pfilmtags += ', threesome'
  324. else
  325. $pfilmtags = 'threesome'
  326. end
  327. elseif pfactor = 1 and pfactress = 1:
  328. if $pfilmtags <> '':
  329. $pfilmtags += ', threesome'
  330. else
  331. $pfilmtags = 'threesome'
  332. end
  333. elseif pfactor = 0 and pfactress = 2:
  334. if $pfilmtags <> '':
  335. $pfilmtags += ', threesome'
  336. else
  337. $pfilmtags = 'threesome'
  338. end
  339. end
  340. if pfType = 1:
  341. if $pfilmtags <> '':
  342. $pfilmtags += ', creampie'
  343. else
  344. $pfilmtags = 'creampie'
  345. end
  346. end
  347. if tits >= 4:
  348. if $pfilmtags <> '':
  349. $pfilmtags += ', big tits'
  350. else
  351. $pfilmtags = 'big tits'
  352. end
  353. end
  354. if func('pcs_has_attr', 'body_ass_bubble'):
  355. if $pfilmtags <> '':
  356. $pfilmtags += ', big ass'
  357. else
  358. $pfilmtags = 'big ass'
  359. end
  360. end
  361. if $pfilmtags <> '':
  362. $pfilmtags += ', '+$tags
  363. else
  364. $pfilmtags = $tags
  365. end
  366. }
  367. --- pornhist ---------------------------------