rex_party_smallEvents.qsrc 66 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201
  1. # rex_party_smallEvents
  2. if $ARGS[0] = 'dance':
  3. cla
  4. *clr
  5. minut += 5
  6. if pcs_inhib < 40: inhib_exp += rand(1,2)
  7. gs 'stat'
  8. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_gost_1_<<rand(1,7)>>.mp4"></video></center>'
  9. 'Moving to the rhythmic sounds, you indulge in an unrestrained dance.'
  10. 'You jump, sway your body and rock your booty, losing yourself in the general merriment.'
  11. if pcs_danc >= 50: 'You move your body perfectly with the rhythm of the music in an erotic way. This gets you a lot of attention from the others. Attention that you love.'
  12. if pcs_danc < 50: 'Your ridiculous movements during the dance doesn''t bother anyone. You dance badly, but you don''t care.'
  13. act 'Have a rest': gt $loc, $loc_arg
  14. act 'Dance more': gt 'rex_party_smallEvents', 'dance'
  15. end
  16. !Drink
  17. if $ARGS[0] = 'party_drink':
  18. cls
  19. minut += 5
  20. alkoParty += 1
  21. gs 'drugs', 'alcohol', 'vodka'
  22. gs 'stat'
  23. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_2_' + rand(1,4) + '.jpg"></center>'
  24. 'Someone hands you a half full bottle of booze. Putting your lips to the mouth of the bottle, you turn it up and gulp down several swigs of strong drink, noticing the effects almost at once.'
  25. 'The party has just begun, you can still walk through the apartment and find something to do.'
  26. act 'Move away': gt $loc, $loc_arg
  27. end
  28. if $ARGS[0] = 'sleep':
  29. *clr & cla
  30. menu_off = 1
  31. minut += 5
  32. gs 'stat'
  33. if Rex_save = 1 and Rex_Love = 1:
  34. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_13_<<rand(1,4)>>.jpg"></center>'
  35. 'You fall asleep feeling the warmth of his body against your back as he hugs you tightly.'
  36. 'You feel his hard erection against your ass. It excites you, but you are too tired to do anything with it as you fall fast asleep.'
  37. elseif Rex_save = 1 and Rex_Love = 0:
  38. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_12_<<rand(1,11)>>.jpg"></center>'
  39. 'You feel completely safe as you fall asleep.'
  40. elseif iralenasleep >= 1:
  41. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_iralena_6_<<rand(6,7)>>.jpg"></center>'
  42. 'You Lena and Ira lie in the bed side by side as you fall asleep.'
  43. elseif drunk_sveta >= 1 and sister_party_dom < 1:
  44. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_4_<<rand(1,3)>>.jpg"></center>'
  45. 'Your body could not withstand so much alcohol and you end up passing out. Fortunately for you, friends are close and you are placed in a bed.'
  46. elseif sister_party_dom >= 1:
  47. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_sister_9_<<rand(3,5)>>.jpg"></center>'
  48. 'You fall asleep in the arms of your sister with a final kiss before drifting off.'
  49. elseif party_boys_in >= 1:
  50. i = rand(1,3)
  51. hidden_guy += 3
  52. if i = 1:
  53. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  54. gs 'boyStat', $npclastgenerated
  55. sloc = rand(0,6)
  56. if sloc = 1:
  57. gs 'cum_call', 'labia', 'unconcious rapist', 2
  58. elseif sloc = 2:
  59. gs 'cum_call', 'butt', 'unconcious rapist', 2
  60. elseif sloc = 3:
  61. gs 'cum_call', 'back', 'unconcious rapist', 2
  62. elseif sloc = 4:
  63. gs 'cum_call', 'face', 'unconcious rapist', 2
  64. elseif sloc = 5:
  65. gs 'cum_call', 'mouth', 'unconcious rapist', 2
  66. elseif sloc = 6:
  67. gs 'cum_call', 'stomach', 'unconcious rapist', 2
  68. end
  69. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  70. gs 'boyStat', $npclastgenerated
  71. sloc = rand(0,6)
  72. if sloc = 1:
  73. gs 'cum_call', 'labia', 'unconcious rapist', 2
  74. elseif sloc = 2:
  75. gs 'cum_call', 'butt', 'unconcious rapist', 2
  76. elseif sloc = 3:
  77. gs 'cum_call', 'back', 'unconcious rapist', 2
  78. elseif sloc = 4:
  79. gs 'cum_call', 'face', 'unconcious rapist', 2
  80. elseif sloc = 5:
  81. gs 'cum_call', 'mouth', 'unconcious rapist', 2
  82. elseif sloc = 6:
  83. gs 'cum_call', 'stomach', 'unconcious rapist', 2
  84. end
  85. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  86. gs 'boyStat', $npclastgenerated
  87. sexunaware = 1
  88. sloc = rand(0,6)
  89. if sloc = 1:
  90. gs 'cum_call', 'labia', 'unconcious rapist', 2
  91. elseif sloc = 2:
  92. gs 'cum_call', 'butt', 'unconcious rapist', 2
  93. elseif sloc = 3:
  94. gs 'cum_call', 'back', 'unconcious rapist', 2
  95. elseif sloc = 4:
  96. gs 'cum_call', 'face', 'unconcious rapist', 2
  97. elseif sloc = 5:
  98. gs 'cum_call', 'mouth', 'unconcious rapist', 2
  99. elseif sloc = 6:
  100. gs 'cum_call', 'stomach', 'unconcious rapist', 2
  101. end
  102. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_6_<<rand(1,9)>>.jpg"></center>'
  103. 'After everything that happened tonight, you feel exhausted and fall asleep. Your face and body are still smeared and coated in sperm, but you don''t care.'
  104. elseif i = 2:
  105. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  106. gs 'boyStat', $npclastgenerated
  107. gs 'cum_call', 'face', 'unconcious rapist', 2
  108. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  109. gs 'boyStat', $npclastgenerated
  110. gs 'cum_call', 'face', 'unconcious rapist', 2
  111. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  112. gs 'boyStat', $npclastgenerated
  113. gs 'cum_call', 'face', 'unconcious rapist', 2
  114. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_8_<<rand(1,5)>>.jpg"></center>'
  115. 'After everything that happened tonight, you feel exhausted and fall asleep. You have a dream about warm wet drops landing on your face and lips, like a warm summers rain. You sleepily like at the drops.'
  116. elseif i = 3:
  117. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  118. gs 'boyStat', $npclastgenerated
  119. if rand(0,1) = 0:
  120. gs 'cum_call', 'anus', 'unconcious rapist', 2
  121. else
  122. gs 'cum_call', '', 'unconcious rapist', 2
  123. end
  124. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  125. gs 'boyStat', $npclastgenerated
  126. sexunaware = 1
  127. if rand(0,1) = 0:
  128. gs 'cum_call', 'anus', 'unconcious rapist', 2
  129. else
  130. gs 'cum_call', '', 'unconcious rapist', 2
  131. end
  132. gs 'npcgeneratec', 0, 'unconcious rapist', rand(17,22)
  133. gs 'boyStat', $npclastgenerated
  134. if rand(0,1) = 0:
  135. gs 'cum_call', 'anus', 'unconcious rapist', 2
  136. else
  137. gs 'cum_call', '', 'unconcious rapist', 2
  138. end
  139. i = rand(1,2)
  140. if i = 1:'<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_9_<<rand(1,2)>>.jpg"></center>'
  141. if i = 2:'<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_9_3.mp4"></video></center>'
  142. 'After everything that happened tonight, you feel exhausted and fall asleep. You have a dream about being impaled on a stake for all your sins but surprisingly, instead of hurting, it actually feels wonderful.'
  143. end
  144. end
  145. if locat['Fam_inGad'] = 0:
  146. ''
  147. 'After sleeping for some time, you are suddenly awakened by someone yelling at you to wake up while they slap you.'
  148. act 'Wake up':
  149. *clr & cla
  150. minut += 90
  151. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_7.jpg"></center>'
  152. 'Anya shakes, yells at and slaps you until you slowly wake up.'
  153. 'She smiles at you. "It looks like you had fun tonight. How are you feeling?"'
  154. 'You groan, feeling sick. Your head is pounding, you feel like you are about to throw up and you are sore in more places than you can remember. "Go away and let me sleep, sis"'
  155. 'Anya shakes you again. "Get up you drunk idiot! Mom will kill us both if you don''t come home tonight."'
  156. if Rex_save = 1 and Rex_Love = 0: 'As you leave the apartment, you gently kiss Rex on the cheek, thanking for the evening.'
  157. if Rex_Love = 1: 'As you leave the apartment, you passionatly kiss Rex on the lips. "Thank you for a lovely evening."'
  158. if party_boys_in >= 1: 'As you leave the apartment, some drunk guys tell you they will miss you and to sleep well while laughing to each other.'
  159. if hour < 22 and hour > 18:
  160. minut += ((21 - hour) * 60) + (60 - minut)
  161. gs 'arousal', 'end'
  162. gs 'stat'
  163. act 'Go home': gt 'bedrPar'
  164. else
  165. gs 'arousal', 'end'
  166. gs 'stat'
  167. act 'Go home':minut += 15 & gt 'bedrPar'
  168. end
  169. end
  170. else
  171. if hour < 9 and hour > 3 :
  172. *clr & cla
  173. gs 'sleep_simple', 'sleep_until', 9, 0
  174. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_7.jpg"></center>'
  175. 'Anya shakes you until you slowly wake up'
  176. 'She smiles at you. "Well it looks like you had fun tonight. How are you feeling?"'
  177. 'You groan, feeling sick. Your head is pounding and you are sore in more places than you can remember. "Let me sleep sis! I feel so sick."'
  178. 'Anya shakes you again. "Get up you drunk idiot! Mom is going to kill us both since we haven''t come home yet!"'
  179. if Rex_save = 1 and Rex_Love = 0: 'As you leave the apartment, you gently kiss Rex on the cheek, thanking for the evening.'
  180. if Rex_Love = 1: 'As you leave the apartment, you passionatly kiss Rex on the lips. "Thank you for a lovely evening."'
  181. gs 'arousal', 'end'
  182. gs 'stat'
  183. act 'Go home': minut += 15 & gt 'bedrPar'
  184. else
  185. *clr & cla
  186. minut += 90
  187. gs 'stat'
  188. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_4_1.jpg"></center>'
  189. *nl 'You wake up an hour later and find the party still in full swing.'
  190. act 'Return to party': gt $loc, $loc_arg
  191. end
  192. end
  193. end
  194. if $ARGS[0] = 'lena':
  195. cls
  196. minut += 5
  197. menu_off = 0
  198. gs 'stat'
  199. '<center><b><font color = maroon>Lena</font></b></center>'
  200. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/lena/lena.jpg"></center>'
  201. 'Walking up to Lena you talk and share a drink.'
  202. 'Small and mobile Lena'
  203. act 'Move away': gt $loc, $loc_arg
  204. if alko < 6 and $loc_arg = 'RexRoom': act 'Have a drink': gt 'rex_party_smallEvents', 'party_drink'
  205. end
  206. if $ARGS[0] = 'ira':
  207. cla & *clr
  208. minut += 5
  209. menu_off = 0
  210. gs 'stat'
  211. '<center><b><font color = maroon>Ira</font></b></center>'
  212. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/ira/ira.jpg"></center>'
  213. 'Walking up to Ira you talk and share a drink.'
  214. 'Constantly embarrassing Ira'
  215. act 'Move away': gt $loc, $loc_arg
  216. if alko < 6 and $loc_arg = 'RexRoom': act 'Have a drink': gt 'rex_party_smallEvents', 'party_drink'
  217. end
  218. if $ARGS[0] = 'ira_lena_livingRoom':
  219. cls
  220. minut += 5
  221. menu_off = 0
  222. gs 'stat'
  223. '<center><b><font color = maroon>Ira and Lena</font></b></center>'
  224. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_iralena_1_<<rand(1,5)>>.jpg"></center>'
  225. 'Ira and Lena are really getting into the spirit of the party.'
  226. 'Lena and Ira together clink cups. "<<$pcs_nickname>>, Lets party!" As they offer you a drink.'
  227. act 'Move away': gt $loc, $loc_arg
  228. act 'Drink':
  229. cls
  230. menu_off = 1
  231. minut += 5
  232. drunk_sveta += 1
  233. gs 'drugs', 'alcohol', 'beer', 1
  234. gs 'stat'
  235. '<center><b><font color = maroon>Ira and Lena</font></b></center>'
  236. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_iralena_2.jpg"></center>'
  237. 'Ira and Lena ply you with drinks, the more you drink the more your mood is markedly improved.'
  238. 'After several drinks Lena and Ira pull you roughly along to come have fun with them.'
  239. if alko >= 7:
  240. 'Sudden your head starts spinning and you feel unsteady.'
  241. act 'Pass out': gt 'rex_party_smallEvents', 'sleep'
  242. else
  243. act 'Have fun': gt 'rex_party_sexEvents', 'ira_lena_fun', 'boys'
  244. act 'Move away': gt $loc, $loc_arg
  245. end
  246. end
  247. act 'Dance':
  248. cls
  249. minut += 5
  250. menu_off = 1
  251. gs 'stat'
  252. '<center><b><font color = maroon>Ira and Lena</font></b></center>'
  253. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_gost_1_<<rand(1,7)>>.mp4"></video></center>'
  254. 'Moving to the rhythmic sounds, you indulge in an unrestrained dance with Lena and Ira.'
  255. 'You jump, sway your body, and rock your booty, losing yourself in the general merriment.'
  256. if pcs_danc >= 50: 'You move your body perfectly with the rhythm of the music in an erotic way, getting you a lot of attention from others and you love they attention.'
  257. if pcs_danc < 50: 'Your ridiculous movements during the dance does not bother anyone, you dance badly, but you do not care.'
  258. act 'Have a rest': gt $loc, $loc_arg
  259. act 'Kiss': gt 'rex_party_sexEvents', 'ira_lena_fun', 'girls'
  260. end
  261. end
  262. if $ARGS[0] = 'rex':
  263. *clr & cla
  264. minut += 5
  265. gs 'stat'
  266. '<center><b><font color = maroon>Rex</font></b></center>'
  267. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/reks/reks.jpg"></center>'
  268. 'Tall, athletic guy, whom everyone calls Rex.'
  269. if Rex_Love = 0: 'You walk up to Rex but then you realize he looks way too drunk and distracted by the other girls to pay much attention to you.'
  270. if Rex_Love = 1: 'Rex comes up to you and hugs you sweetly.'
  271. act 'Move away': gt $loc,$loc_arg
  272. if $loc_arg = 'RexRoom' and alko < 6: act 'propose a toast': gt 'rex_party_smallEvents', 'party_drink'
  273. if $loc_arg = 'LivingRoom': act 'Chat': gt 'rex_party_smallEvents', 'rex_talk'
  274. if $loc_arg = 'LivingRoom': act 'Dance together': gt 'rex_party_smallEvents', 'rex_dance'
  275. end
  276. if $ARGS[0] = 'rex_talk':
  277. *clr & cla
  278. menu_off = 1
  279. minut += 5
  280. rex_talk += 1
  281. gs 'stat'
  282. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_2_<<rand(1,5)>>.mp4"></video></center>'
  283. 'You find a space to sit and talk to Rex. He''s quite interesting and very handsome, so you spend most of the time just nodding and flirting.'
  284. act 'Move away': gt $loc, $loc_arg
  285. if rex_talk >= 2: act 'Hug': gt 'rex_party_smallEvents', 'rex_hug'
  286. act 'Ask Rex to dance': gt 'rex_party_smallEvents', 'rex_dance'
  287. end
  288. if $ARGS[0] = 'rex_hug':
  289. *clr & cla
  290. menu_off = 1
  291. minut += 5
  292. if pcs_inhib < 40:inhib_exp += rand(1,2)
  293. gs 'stat'
  294. if Rex_Love =1:
  295. if rand(1,2) = 1:
  296. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_4_1.mp4"></video></center>'
  297. else
  298. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_4_<<rand(2,5)>>.jpg"></center>'
  299. end
  300. 'Rex grabs you with his strong hands and begins to knead your ass with one hand and caress your pussy with the other in front of everybody.'
  301. 'You grab his neck and audibly groan, completely giving into his affections.'
  302. 'You are overwhelmed with the most pleasant feeling in the world. You don''t want it to stop.'
  303. act 'Kiss':
  304. *clr & cla
  305. if rand(1,2) = 1:
  306. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_5_1.jpg"></center>'
  307. else
  308. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_5_<<rand(2,4)>>.mp4"></video></center>'
  309. end
  310. 'Looking adoringly into each other''s eyes, you begin to passionately kiss.'
  311. 'You lips touch in your long kiss. It almost feels like a shock of electricity is running through your body.'
  312. 'For a long time, you continue to enjoy the warm kiss, but Rex eventually breaks the kiss and says "Come with me <<$pcs_nickname>>. I think we''ve had enough fun here." Smiling, he takes you by the hand and leads you away.'
  313. gs 'arousal', 'kiss', 5, 'exhibitionism'
  314. gs 'stat'
  315. act 'Move away': gt $loc, $loc_arg
  316. act 'Follow Rex': gt 'rex_party_sexEvents', 'rex_sex'
  317. end
  318. end
  319. if Rex_Love = 0:
  320. if rand(1,2) = 1:
  321. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_13_<<rand(4,7)>>.jpg"></center>'
  322. else
  323. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_13_<<rand(1,3)>>.mp4"></video></center>'
  324. end
  325. 'Rex grabs you with his strong hands and begins to knead your ass with one hand and caress your pussy with the other in front of everybody.'
  326. 'You grab his neck and audibly groan, completely giving into his affections.'
  327. 'After playing with your pussy for a bit, he stops, takes you by the hand and pulls you away as he says "Come with me <<$pcs_nickname>>, I think we''ve had enough fun here."'
  328. gs 'arousal', 'foreplay', 5, 'exhibitionism'
  329. gs 'stat'
  330. act 'Follow Rex': gt 'rex_party_sexEvents', 'rex_sex'
  331. end
  332. end
  333. if $ARGS[0] = 'rex_dance':
  334. *clr & cla
  335. menu_off = 1
  336. minut += 5
  337. if pcs_inhib < 40: inhib_exp += rand(1,2)
  338. gs 'stat'
  339. if rand(1,2) = 1:
  340. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_3_<<rand(4,6)>>.mp4"></video></center>'
  341. else
  342. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_rex_party_gost_3_<<rand(1,3)>>.jpg"></center>'
  343. end
  344. 'Rex takes you by the hand and drags you out to dance. You are happy to follow him.'
  345. 'You dance, slowly getting closer to each other and finally grinding a bit against each other.'
  346. 'You turn around, putting your back to him and grind your tight ass against his crotch. You can feel his hard cock against your ass as you grind against it.'
  347. act 'Move away': gt $loc, $loc_arg
  348. if rex_talk >= 2: act 'Hug': gt 'rex_party_smallEvents', 'rex_hug'
  349. end
  350. if $ARGS[0] = 'roma':
  351. cls
  352. minut += 5
  353. gs 'stat'
  354. '<center><b><font color = maroon>Roma</font></b></center>'
  355. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/roma/roma.jpg"></center>'
  356. 'Red-haired skinny guy named Roma.'
  357. act 'Move away': gt $loc, $loc_arg
  358. end
  359. if $ARGS[0] = 'anya':
  360. *clr & cla
  361. minut += 5
  362. gs 'stat'
  363. '<center><b><font color = maroon>Anya</font></b></center>'
  364. if $loc_arg = 'LivingRoom':
  365. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_sister_1.jpg"></center>'
  366. ''
  367. else
  368. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/resident/anya/sister2.jpg"></center>'
  369. ''
  370. end
  371. 'Your sister' + iif($loc_arg = 'LivingRoom', ' is drunk and in good spirits.', '.')
  372. '"Oh <<$pcs_nickname>>, how do you like our humble party? It looks like you''re having a good time."'
  373. act 'Move away': gt $loc, $loc_arg
  374. if alko < 6 and $loc_arg = 'RexRoom': act 'Have a drink': gt 'rex_party_smallEvents', 'party_drink'
  375. if $loc_arg = 'LivingRoom': act 'Drink': gt 'rex_party_smallEvents', 'sister_drink'
  376. if $loc_arg = 'LivingRoom': act 'Chat about guys': gt 'rex_party_smallEvents', 'sister_talk'
  377. end
  378. if $ARGS[0] = 'sister_talk':
  379. *clr & cla
  380. minut += 5
  381. gs 'stat'
  382. '<center><b><font color = maroon>Anya</font></b></center>'
  383. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_sister_1.jpg"></center>'
  384. ! These chat options will happen when Anya and Roma had their fight.
  385. if sisterQW['AnyaRomaQW'] = 1:
  386. sisterQW['partytalk'] += 1
  387. if sisterQW['partytalk'] = 1:
  388. '"It is strange seeing you back together with Roma."'
  389. '"We talked things out and decided to give it another chance.'
  390. elseif sisterQW['partytalk'] = 2:
  391. '"You''re over it after all the cursing, crying and yelling?"'
  392. '"I know, I know. I got excited a little bit, but now everything is worked out."'
  393. elseif sisterQW['partytalk'] = 3:
  394. '"So you are just going to continue dating him after everything that happened?"'
  395. '"Well little sis, he made mistakes. Now he and I have worked things out, and I thank God everything is behind us."'
  396. elseif sisterQW['partytalk'] = 4:
  397. '"I cannot believe it! You let him crawl back and took him back? It''s not like you."'
  398. '"Well <<$pcs_nickname>>, it''s best to have a bird in the hand, especially now that we don''t have such a simple relationship anymore.'
  399. elseif sisterQW['partytalk'] = 5:
  400. '"What do you mean you ''don''t have a simple relationship''? I need more details."'
  401. '"Yes I know, so pay attention, I''m not going to repeat this. In a sense, we now have an open relationship."'
  402. elseif sisterQW['partytalk'] = 6:
  403. '"Open relationship? You mean where you can both fuck anyone you want and you keep dating him?"'
  404. '"Eh, something like that <<$pcs_nickname>>."'
  405. elseif sisterQW['partytalk'] = 7:
  406. '"I can see that you are a fool! I could not agree to that."'
  407. '"Why? I know he loves me, and he knows that I love him, but while we are young, we have fun."'
  408. elseif sisterQW['partytalk'] = 8:
  409. '"I still say it''s crazy how you can be in a loving relationship and still fuck anyone."'
  410. '"<<$pcs_nickname>>, I am not a complete fool. Why ''anyone''? Look around, there are other nice guys here too, such as Rex.'
  411. elseif sisterQW['partytalk'] = 9 and Rex_Love = 1:
  412. '"Do you want me to kill you? You know that I''m dating Rex!"'
  413. '"Calm down <<$pcs_nickname>>, I was joking! I know that you two are dating. Although... I did let you fuck my boyfriend, so why can''t I fuck yours?"'
  414. elseif sisterQW['partytalk'] = 9 and Rex_Love = 0:
  415. '"You''re right. I wouldn''t mind having him myself, but I don''t know if Rex would agree."'
  416. '"Oh, what a naughty girl! Well then, how about we lure him together?"'
  417. elseif sisterQW['partytalk'] = 10 and Rex_Love = 1:
  418. sisterQW['AnyaRomaQW'] = 2
  419. 'You huff and pout, but realize she has a point. "OK fine, but I''m not sure Rex would agree. You and Roma both agreed ahead of time."'
  420. '"The main thing is that you are not opposed to it <<$pcs_nickname>>. Besides, all men are the same. You really think Rex could withstand both our charms?"'
  421. elseif sisterQW['partytalk'] = 10 and Rex_Love = 0:
  422. sisterQW['AnyaRomaQW'] = 2
  423. '"You want to seduce Rex? Haha, I''ve already fucked him! You have no idea what he is like in bed.'
  424. '"Wow! What a saucy little minx you are! So that''s why you are always running around in his room? Well then, that will make this easier."'
  425. end
  426. else
  427. i = rand(1,9)
  428. if i = 1:'"<<$pcs_nickname>>, you still don''t have a man?"'
  429. if i = 2:'"Sometimes I can''t decide what is more important: the size of their wallet or the size of their dick. What do you think <<$pcs_nickname>>?"'
  430. if i = 3:'"If you have a reputation as the town whore, the guys won''t let you come to the parties anymore."'
  431. if i = 4:'"It''s not good to come here when you''re in a bad mood. Rex hates having miserable bastards in his house."'
  432. if i = 5:'"Still going to that crap school? Idiot, find yourself a rich man, and all your problems are solved!"'
  433. if i = 6:'"When I drink, I become like a man and constantly think about sex."'
  434. if i = 7:'"Roma sends his greetings. He said he missed our threesomes, so I slapped him across the face."'
  435. if i = 8:'"What do you think of our host?"'
  436. if i = 9:'"Get wild <<$pcs_nickname>>! Everything that happens at Rex''s parties, stays at Rex''s parties."'
  437. end
  438. act 'Move away': gt $loc, $loc_arg
  439. end
  440. if $ARGS[0] = 'sister_drink':
  441. minut += 5
  442. *clr & cla
  443. gs 'drugs', 'alcohol', 'beer'
  444. drunk_sveta += 1
  445. gs 'stat'
  446. '<center><b><font color = maroon>Anya</font></b></center>'
  447. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_sister_2.jpg"></center>'
  448. 'Anya hands you a bottle. You take a swig and hand it back. "Keep the bottle, little sis. I won''t tell <<$npc_nickname[''A29'']>>," she says with a wink.'
  449. if alko >= 7:
  450. 'With her encouragement, you end up drinking more than you should.'
  451. 'Suddenly your head is severely spinning...'
  452. act 'Pass out': gt 'rex_party_smallEvents', 'sleep'
  453. else
  454. 'You gladly drink more, sharing it with your sister.'
  455. 'Feeling buzzed, you are ready to plunge into the wild debauchery of the party.'
  456. act 'Dance topless': gt 'rex_party_sexEvents', 'sister_fun'
  457. act 'Move away': gt $loc, $loc_arg
  458. end
  459. end
  460. if $ARGS[0] = 'dj':
  461. *clr & cla
  462. minut += 5
  463. menu_off = 1
  464. party_dj = 1
  465. gs'stat'
  466. if party_dj = 1 and dj_beer < 1:
  467. '<center><b><font color = maroon>DJ</font></b></center>'
  468. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boy.jpg"></center>'
  469. 'The guy messes with the soundboard and makes the sound even louder. "Hello, <<$pcs_nickname>>, get my friend and me a beer. You can find all the booze in the kitchen."'
  470. elseif dj_beer = 1 and dj_thank < 1:
  471. '<center><b><font color = maroon>DJ</font></b></center>'
  472. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boy.jpg"></center>'
  473. 'The guy messes with the soundboard and makes the sound even louder. "Well, <<$pcs_nickname>>, where are our beers?" You go into the kitchen, get two bottles of beer and <a href="exec:gt ''rex_party_smallEvents'', ''dj_give_beer''">bring</a> them to the guys.'
  474. elseif dj_thank = 1 and dj_bad < 1:
  475. '<center><b><font color = maroon>DJ</font></b></center>'
  476. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boy.jpg"></center>'
  477. 'The guy messes with the soundboard and makes the sound even louder. You are allowed to <a href="exec:gt ''rex_party_smallEvents'', ''dj_thank''">twist</a> some knobs on the turntable.'
  478. elseif dj_bad = 1 and dj_boobs < 1:
  479. '<center><b><font color = maroon>DJ</font></b></center>'
  480. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boy.jpg"></center>'
  481. '"<<$pcs_nickname>>, you won''t get a turn. Don''t even try this time.'
  482. elseif dj_boobs = 1:
  483. '<center><b><font color = maroon>DJ</font></b></center>'
  484. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boy.jpg"></center>'
  485. 'The guy messes with the soundboard and makes the sound even louder. You are again allowed to <a href="exec:gt ''rex_party_sexEvents'', ''dj_cock''">twist</a> some knobs on the turntable.'
  486. end
  487. act 'Move away': gt $loc, $loc_arg
  488. gs 'willpower', 'exhib', 'self', 'medium'
  489. if will_cost <= pcs_willpwr:
  490. act 'Flash boobs (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'self' & gt 'rex_party_sexEvents', 'dj_boobs'
  491. else
  492. act 'Flash boobs (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  493. end
  494. end
  495. if $ARGS[0] = 'dj_take_beer':
  496. cla
  497. *clr
  498. menu_off = 1
  499. minut += 5
  500. dj_beer = 1
  501. gs 'stat'
  502. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_2_3.jpg"></center>'
  503. 'You take two bottles of booze to the DJ and his friend'
  504. act 'Move away': gt $loc, $loc_arg
  505. end
  506. if $ARGS[0] = 'dj_give_beer':
  507. cla
  508. *clr
  509. menu_off = 1
  510. minut += 5
  511. dj_thank = 1
  512. gs 'stat'
  513. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boy.jpg"></center>'
  514. 'You take two beers to the guys. They gratefully appreciate your offer.'
  515. '"<<$pcs_nickname>>, you ever use one of these before?" the DJ asks you, indicating the turntable.'
  516. 'You shake your head. "No, I can''t say I have."'
  517. 'He smiles at you. "While everyone is still sitting and drinking, you can give it a little <a href="exec: gt ''rex_party_smallEvents'', ''dj_thank''">twist</a>. Let''s see what you can do girl!"'
  518. act 'Move away': gt $loc, $loc_arg
  519. end
  520. if $ARGS[0] = 'dj_thank':
  521. cla
  522. *clr
  523. menu_off = 1
  524. minut += 5
  525. dj_bad = 1
  526. gs 'exp_gain', 'instrmusic', rand(0,2)
  527. gs 'stat'
  528. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boy_1.jpg"></center>'
  529. 'You are happy to take this opportunity. Putting your fingers on the records, you move them around, making some god awful noises. The guys stop you before too long. "OK, I think that''s enough. I think you made my ears bleed." he says with a laugh.'
  530. act 'Move away': gt $loc, $loc_arg
  531. !why not add in an option here to start the series below?
  532. end
  533. if $ARGS[0] = 'party_girls':
  534. cls
  535. minut += 5
  536. gs 'stat'
  537. '<center><b><font color = maroon>Girls</font></b></center>'
  538. if $loc_arg = 'RexRoom':
  539. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls.jpg"></center>'
  540. *nl
  541. else
  542. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_1_<<rand(1,4)>>.jpg"></center>'
  543. *nl
  544. end
  545. 'Some former classmates of your sister. You are not familiar with them.'
  546. act 'Move away': gt $loc, $loc_arg
  547. if $loc_arg = 'LivingRoom': act 'Drink': gt 'rex_party_smallEvents', 'party_girls_drink'
  548. if $loc_arg = 'LivingRoom': act 'Dance together': gt 'rex_party_smallEvents', 'party_girls_dance'
  549. if $loc_arg = 'RexRoom' and alko < 6: act 'Propose a toast': gt 'rex_party_smallEvents', 'party_drink'
  550. end
  551. if $ARGS[0] = 'party_girls_drink':
  552. cls
  553. minut += 5
  554. gs 'drugs', 'alcohol', 'beer'
  555. drunk_sveta +=1
  556. gs 'stat'
  557. i = rand(1,2)
  558. if i = 1: '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_2_1.mp4"></video></center>'
  559. if i = 2: '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_2_<<rand(2,4)>>.jpg"></center>'
  560. 'The girls have some booze with them and you are happy to share a drink with them. You and the girls keep drinking during dancing. Your drunk yelling drowned out by the music, as the girls tell you they want to have even more fun...'
  561. if alko >= 7: 'You are dizzy, and feel very ill.'
  562. if alko >= 7: act 'Sleep': gt 'rex_party_smallEvents', 'sleep'
  563. gs 'willpower', 'exhib', 'resist', 'easy'
  564. if will_cost <= pcs_willpwr:
  565. act 'Move away (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt $loc, $loc_arg
  566. else
  567. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  568. end
  569. act 'Drink more':
  570. cls
  571. minut += 5
  572. drunk_sveta += 1
  573. gs 'stat'
  574. i = rand(1,2)
  575. if i = 1: '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_3_1.mp4"></video></center>'
  576. if i = 2: '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_3_<<rand(2,3)>>.jpg"></center>'
  577. 'You have another drink, and start to lose touch with reality. You feel dizzy and very sick...'
  578. act 'Pass out': gt 'rex_party_smallEvents', 'sleep'
  579. end
  580. !act 'Take off your top': gt 'rex_party_smallEvents', 'bra'
  581. end
  582. if $ARGS[0] = 'bra':
  583. cls
  584. minut += 5
  585. inhib_exp += rand(0,1)
  586. gs 'stat'
  587. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_5_<<rand(1,3)>>.jpg"></center>'
  588. 'Yielding to the general madness, you pull your top off exposing your bra to the frantic shouts of the boys. In this state your dancing clearly will look much more spectacular.'
  589. if Rex_Love = 1: 'Rex watches you closely, but says nothing.'
  590. gs 'willpower', 'exhib', 'resist', 'easy'
  591. if will_cost <= pcs_willpwr:
  592. act 'Move away (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt $loc, $loc_arg
  593. else
  594. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  595. end
  596. act 'Dance topless':
  597. cls
  598. inhib_exp += rand(0,2)
  599. gs 'arousal', 'flash', 5
  600. gs 'stat'
  601. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_6_<<rand(1,3)>>.jpg"></center>'
  602. 'Under the merry shouts of the boys and girls you take off your bra and dance half-naked. A lot of the guys come closer trying to enjoy the view.'
  603. if Rex_Love = 1: 'You enjoy yourself when Rex shouts "Maybe thats enough? This isn''t very nice to look at."'
  604. act 'Move away': gt $loc, $loc_arg
  605. if Rex_Love = 1: act 'Drag him to the restroom': gt 'rex_party_sexEvents', 'rex_toilet_bj'
  606. act 'Undress':
  607. gs 'npcgeneratec', 0, 'Boy from Rex''s Party', 17
  608. gs 'boyStat', $npclastgenerated
  609. $boydesc = $npc_usedname[$npclastgenerated]
  610. inhib_exp += rand(0,2)
  611. cls
  612. gs 'arousal', 'flash', 5
  613. gs 'stat'
  614. if rand(1,2) = 1:
  615. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_9_1.jpg"></center>'
  616. else
  617. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_9_2.mp4"></video></center>'
  618. end
  619. if Rex_Love = 1: 'You completely ignore Rex. He glares at you and turns away.'
  620. 'You undress completely, only a few girls follow your example and get naked as well. You all get into the middle of the room and dance together. Ignoring the surrounding people, you dance together, naked. Several drunks guys approach you, and tell you it would be a sin to not use such a fine bitch like you.'
  621. act 'Go with the guys': gt 'rex_party_sexEvents', 'toilet_boys_bj'
  622. end
  623. end
  624. end
  625. if $ARGS[0] = 'party_girls_dance':
  626. cls
  627. minut += 5
  628. if pcs_inhib < 40:inhib_exp += rand(1,2)
  629. gs 'stat'
  630. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_gost_1_<<rand(1,7)>>.mp4"></video></center>'
  631. 'You are grabbed by the rhythmic sounds and indulge in unrestrained dancing with the crowd. You jump and twist your body, completely merging and absorbing yourself in the fun atmosphere.'
  632. if pcs_danc >= 50: 'Your curves and movements to the music make you a pleasure to watch. The others stare at you excitedly.'
  633. if pcs_danc < 50: 'Your ridiculous movements during the dance don''t bother anyone. You dance badly, but you do not care.'
  634. act 'Take a breather': gt $loc, $loc_arg
  635. act 'Dance more':
  636. cls
  637. minut += 5
  638. inhib_exp += rand(1,2)
  639. gs 'stat'
  640. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_14_<<rand(1,4)>>.jpg"></center>'
  641. 'You have a lot of fun as you dance with the girls under the deafening music. During the dance you are pressed against each other and the other girls touch you in all sorts of places. Suddenly a pair of hands pull up you skirts and bare your ass. One of the girls pulls down your panties and starts to kiss and lick you.'
  642. if Rex_Love = 1: 'Rex watches you with interest as you have fun with the girls.'
  643. 'The girls are only getting warmed up and offer you more.'
  644. gs 'willpower', 'cuni', 'resist', 'medium'
  645. if will_cost <= pcs_willpwr:
  646. act 'Move away (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt $loc, $loc_arg
  647. else
  648. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  649. end
  650. act 'Give in':
  651. cla
  652. *clr
  653. minut += 5
  654. gs 'stat'
  655. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_girls_party_gost_15_<<rand(1,8)>>.jpg"></center>'
  656. '"Come on <<$pcs_nickname>>, lets get wild." You give in to the general madness, taking off all your clothes, and diving headlong into the abyss of insane lesbian fervor.'
  657. act 'Have fun with the guys': gt 'rex_party_sexEvents', 'orgy'
  658. act 'Go into another room with the girls': gt 'rex_party_sexEvents', 'girl_orgy'
  659. end
  660. end
  661. end
  662. if $ARGS[0] = 'party_boys':
  663. cls
  664. menu_off = 1
  665. minut += 5
  666. gs 'stat'
  667. '<center><b><font color = maroon>Guys</font></b></center>'
  668. if $loc_arg = 'party_kuh' or $loc_arg = 'LivingRoom':
  669. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boys_2.jpg"></center>'
  670. ''
  671. else
  672. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boys.jpg"></center>'
  673. ''
  674. end
  675. 'You see a couple of former classmates of your sister. You are not familiar with them.'
  676. if $loc_arg = 'LivingRoom': 'A couple of fun energetic guys come over to you. "Hey <<$pcs_nickname>>, long time no see. Do you want to come with us?"'
  677. if alko >= 5: '"Hey <<$pcs_nickname>>, how about you show us your great tits. Just for fun?"'
  678. act 'Move away': gt $loc,$loc_arg
  679. if alko < 6 and $loc_arg = 'RexRoom': act 'Drink': gt 'rex_party_smallEvents', 'party_drink'
  680. if $loc_arg = 'Kitchen': act 'Drink': gt 'rex_party_smallEvents', 'kitchen_boy_drink'
  681. if $loc_arg = 'LivingRoom': act 'Drink': gt 'rex_party_smallEvents', 'gost_drink'
  682. if alko >= 5 and $loc_arg = 'LivingRoom': act 'Show your tits': gt 'rex_party_smallEvents', 'show_boobs'
  683. if $loc_arg = 'LivingRoom': act 'Dance': gt 'rex_party_smallEvents', 'dance'
  684. end
  685. if $ARGS[0] = 'gost_drink':
  686. cls
  687. minut += 5
  688. gs 'drugs', 'alcohol', 'beer'
  689. party_boys_in += 1
  690. menu_off = 1
  691. gs 'stat'
  692. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boys_party_gost_1.jpg"></center>'
  693. 'You happily make a couple of sips. Some guys urge you to show off more of your body.'
  694. '"Hey, how about you show us your great tits. Just for fun?"'
  695. gs 'willpower', 'exhib', 'resist', 'easy'
  696. if will_cost <= pcs_willpwr:
  697. act 'Move away (<<will_cost>> Willpower)':
  698. *clr & cla
  699. gs 'willpower', 'pay', 'resist'
  700. gs 'stat'
  701. gt $loc,$loc_arg
  702. end
  703. else
  704. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  705. end
  706. act 'Show your tits': gt 'rex_party_smallEvents', 'show_boobs'
  707. if alko >= 7: act 'Fall asleep drunk': gt 'rex_party_smallEvents', 'sleep'
  708. end
  709. if $ARGS[0] = 'show_boobs':
  710. cls
  711. menu_off = 1
  712. gs 'stat'
  713. if rand(1,2) = 1:
  714. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/party_boys_party_gost_2_1.mp4"></video></center>'
  715. else
  716. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/party_boys_party_gost_2_<<rand(2,5)>>.jpg"></center>'
  717. end
  718. 'With a twinkle in your eyes you lower your bra, baring your breasts, as the guys watch you with pleasure.'
  719. '"So what do you think, boys?" you ask with a smile on your face.'
  720. '"You are a straight up sex grenade, and I would like to pull your pin." one of the guys answers. With these words, they come over to you.'
  721. if Rex_Love = 1: 'Rex looks unhappily in your direction, his eyes flashing with anger and jealousy.'
  722. if Rex_Love = 1: act 'Drag Rex to the restroom': gt 'rex_party_sexEvents', 'rex_toilet_bj'
  723. gs 'arousal', 'flash', 5, 'exhibitionism'
  724. gs 'stat'
  725. act 'Move closer': gt 'rex_party_sexEvents', 'boobs_yes'
  726. gs 'willpower', 'exhib', 'resist', 'easy'
  727. if will_cost <= pcs_willpwr:
  728. act 'Move away (<<will_cost>> Willpower)':
  729. *clr & cla
  730. gs 'willpower', 'pay', 'resist'
  731. gs 'stat'
  732. gt $loc,$loc_arg
  733. end
  734. else
  735. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  736. end
  737. end
  738. if $ARGS[0] = 'kitchen_boy_drink':
  739. cls
  740. minut += 5
  741. gs 'drugs', 'alcohol', 'beer'
  742. party_boys_drink += 1
  743. minut += 5
  744. gs 'stat'
  745. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_2_<<rand(1,4)>>.jpg"></center>'
  746. i = rand(1,6)
  747. if i = 1:
  748. 'You drink along with a crowd of boys. The men constantly guffaw as they tell stories: '
  749. '"Girl, sorry, and you will not have to have sex?"'
  750. '"Oh, sorry, I threw ..."'
  751. '"Congratulations."'
  752. elseif i = 2:
  753. 'You drink along with a crowd of boys. The men constantly guffaw as they tell stories: "When I was a child my parents forbade me all the fun things. Now I''m grown up and my girl doesn''t allow me to do them."'
  754. elseif i = 3:
  755. 'You drink along with a crowd of boys. The men constantly guffaw as they tell stories: "Previously, it was clear. Did the lessons - good, grandmother moved across the street - clever, the ball broke the glass - bad. And now - one girl did well, and the other from this - bad. And you all did everything for the third. And she - still!'
  756. elseif i = 4:
  757. 'You drink along with a crowd of boys. The men constantly guffaw as they tell stories: "Girls always say: Well all, until the evening, Smack! - Well, what, on dick, Smack? Do you want to kiss - a kiss!'
  758. elseif i = 5:
  759. 'You drink along with a crowd of boys. The men constantly guffaw as they tell stories: '
  760. '"Just listen, <<$pcs_nickname>>. When I tell a girl "Come to me", and she asks me "To do what?" do I really have to explain it to her? After all, my house is not a bowling alley or a cinema."'
  761. '"If I say: "I want to have sex. I definitely will have a sex. You can join in, or not. Afterwards you can stay, but it would be better if you leave", she won''t come over."'
  762. '"But if I tell her something ridiculous like "Come back home with me, I have a fine collection of lute music of the 16th century" she will go for it. Girls are well aware what will happen when they come over but they want to have an excuse for it."'
  763. elseif i = 6:
  764. 'You drink along with a crowd of boys. The men constantly guffaw as they tell stories: '
  765. 'So I''m starting to have sex with this girl and she keeps complaining. It goes like this: '
  766. '"The windows are open!"'
  767. '"Who cares?"'
  768. '"There will be mosquitoes everywhere!"'
  769. '"We''ll turn off the lights."'
  770. '"But then the cockroaches come out!"'
  771. end
  772. act 'Move away': gt $loc, $loc_arg
  773. if party_boys_drink > 2:
  774. cls
  775. minut += 5
  776. gs 'stat'
  777. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_2_<<rand(1,3)>>.jpg"></center>'
  778. '"Guys, you poured too much into the glass. I''m drunk already.", you say."'
  779. '"Come on <<$pcs_nickname>>, lets have another." with that, one of the guys puts his arm around you and bares your breasts. The touchy guy is surprisingly nice and you are a little amused by this situation.'
  780. if npc_rel['A57'] >= 50:
  781. 'You notice Rex in the room...'
  782. act 'Get Rex''s attention':
  783. cls
  784. Rex_save += 1
  785. menu_off = 0
  786. minut += 5
  787. gs 'stat'
  788. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_10.jpg"></center>'
  789. 'You glance over to Rex. He seems ready to help you out of this awkward situation.'
  790. 'He quickly exclaims, "Hey boys, are you insane? Take your hands off my fucking girl. One more time and I will kick your ass!"'
  791. 'The guy takes his hands off of you, "Rex, bro, we were just having a bit of drunken fun. I''m sorry, if I hurt your girl."'
  792. 'Rex comes up to you and picks you up, "Come on, sweety. I''ll make sure the other guys leave you alone. Lets go to another room."'
  793. act 'Go to the Rex''s room': gt 'rex_party_smallEvents', 'V_komnatu'
  794. end
  795. end
  796. act 'Have fun with them': gt 'rex_party_smallEvents', 'smile'
  797. gs 'willpower', 'action', 'type', 'medium'
  798. if will_cost <= pcs_willpwr:
  799. act 'Break free of them (<<will_cost>> Willpower)':
  800. *clr & cla
  801. gs 'willpower', 'pay', 'type'
  802. gs 'stat'
  803. cls
  804. menu_off = 0
  805. minut += 5
  806. gs 'stat'
  807. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_3.jpg"></center>'
  808. 'You find the strength to break free of the grasping hands, shouting "Let me go, I don''t want that. Get your filthy hands off me."'
  809. '"Come on, <<$pcs_nickname>>, we''re just having fun. Just admit that you liked where this was going." the touchy guy responds.'
  810. act 'Move away': gt $loc,$loc_arg
  811. act 'Have fun with them': gt 'rex_party_smallEvents', 'smile'
  812. end
  813. else
  814. act 'Break free of them (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  815. end
  816. end
  817. end
  818. if $ARGS[0] = 'smile':
  819. cls
  820. party_boys_in += 1
  821. gs 'npcgeneratec', 0, 'Boy from Rex''s Party', 17
  822. gs 'boyStat', $npclastgenerated
  823. $boydesc = $npc_usedname[$npclastgenerated]
  824. gs 'npcgeneratec', 0, 'Boy from Rex''s Party', 17
  825. $boy1 = $npclastgenerated
  826. $boydesc1 = $npc_usedname[$npclastgenerated]
  827. gs 'npcgeneratec', 0, 'Boy from Rex''s Party', 17
  828. $boy2 = $npclastgenerated
  829. $boydesc2 = $npc_usedname[$npclastgenerated]
  830. gs 'stat'
  831. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_4_<<rand(1,3)>>.jpg"></center>'
  832. 'You give the guys a faint smile, showing your availability. They quickly realize the situation and come over to you and start to stroke your hair and massage your neck. It is very relaxing and you give a soft sigh which turns into a moan. You have the full attention of the boys and they decide to drag you.'
  833. act 'Go outside Rex''s house': gt 'rex_party_sexEvents', 'gangbang_outdoor'
  834. act 'Go to another room':minut += 5 & gt 'rex_party_smallEvents', 'V_komnatu'
  835. end
  836. if $ARGS[0] = 'V_komnatu':
  837. cls
  838. gs 'stat'
  839. i = rand(1,5)
  840. if i = 1:
  841. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_5_1.jpg"></center>'
  842. 'One of the girls is sitting in the room trying to recover from the exhausting party.'
  843. if Rex_save = 1: 'Rex bursts into the room with you in tow, throws everyone out and shuts the door. He gently puts you on a soft bed and lies down on the floor near you.'
  844. if party_boys_in >= 1: 'Several guys switch their attention to her, but are quickly rebuffed. The girl looks at you curiously as the guys unceremoniously put you on your knees and unzip their pants. Even in your drunken delirium you know what they want.'
  845. elseif i = 2:
  846. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_5_2.jpg"></center>'
  847. 'One of the girls is sitting in the room trying to recover from the exhausting party.'
  848. if Rex_save = 1: 'Rex bursts into the room with you in tow, throws everyone out and shuts the door. He gently puts you on a soft bed and lies down on the floor near you.'
  849. if party_boys_in >= 1: 'Anticipating what will happen next, she quickly dodges out of the room. The guys unceremoniously put you on your knees and unzip their pants. Even in your drunken delirium you know what they want.'
  850. elseif i = 3:
  851. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_5_<<rand(3,4)>>.jpg"></center>'
  852. 'In the room your sister and Roma are engaged in sweaty sex.'
  853. if Rex_save = 1: 'Rex just glances at them and says, "Guys, I don''t want you to stop, but you will have to continue in another place."'
  854. '"Hey thats my sister Anya" you exclaim. "Let''s just close the door and let them continue. They won''t mind, right Anya?"'
  855. 'Anya looks at you with a blissful smile, "No, I''m all for it. We''ll just keep fucking over here."'
  856. '"No you won''t. You get your ass out of here already!" says Rex with a menacing expression on his face and the couple quickly leaves the room. He then gently puts you on a soft bed and lies down on the floor near you.'
  857. if party_boys_in >= 1: '"Hey grandpa, do you need help?", one of the boys shouts.'
  858. 'Roma looks at them and says, "Shut up, you dumb fucks, you have your own bitch." The guys laugh a little and decide to leave the couple alone. Then they unceremoniously put you on your knees and unzip their pants. Even in your drunken delirium you know what they want.'
  859. elseif i = 4:
  860. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_5_5.jpg"></center>'
  861. 'The room is occupied by Lena, who is lying on a bed flashing her pussy. You can see cum dripping out of it.'
  862. if Rex_save = 1: 'Rex bursts into the room with you in tow, throws everyone out and shuts the door. He gently puts you on a soft bed and lies down on the floor near you.'
  863. if party_boys_in >= 1: '"Hey look, there is another pretty girl. This seems to be our lucky night." one of the guys says.'
  864. 'Another one chimes in with a grin on his face, "Yeah, but she is already used and has cum on her. Our lovely little <<$pcs_nickname>> here is fresh and clean." With that the guys unceremoniously put you on your knees and unzip their pants. Even in your drunken delirium you know what they want.'
  865. elseif i = 5:
  866. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_kuh_5_6.jpg"></center>'
  867. 'However, the room you are dragged into is currently occupied by two guys fucking Lena.'
  868. if Rex_save = 1: 'Rex bursts into the room with you in tow, throws everyone out and shuts the door. He gently puts you on a soft bed and lies down on the floor near you.'
  869. if party_boys_in >= 1: '"Do you mind, guys?" one of the boy asks with a grin.'
  870. '"No, sit. There is room enough for everyone!" one of the guys who is fucking Lena answers. The boys then unceremoniously put you on your knees and unzip their pants. Even in your drunken delirium you know what they want.'
  871. end
  872. if Rex_save = 1: act 'Fall asleep': gt 'rex_party_smallEvents', 'sleep'
  873. if party_boys_in >= 1: act 'Start to suck': gt 'rex_party_sexEvents', 'gangbang_indoor'
  874. end
  875. !Rex Room event 2
  876. if $ARGS[0] = 'talk':
  877. cls
  878. minut += 5
  879. party_girls_talk += 1
  880. gs 'stat'
  881. $talkEvent[1] = 'You sit and chat with a couple of cute girls. One of them tells you, "I am dating a divorced man. He is very kinky and I''m afraid I can not keep up with it.'
  882. $talkEvent[2] = 'You sit and chat with a couple of cute girls. One of them tells you, "I have a very childish voice. I sound like a Japanese schoolgirl. The guy I''m dating says he likes it, but I''m still insecure about it."'
  883. $talkEvent[3] = 'You sit and chat with a couple of cute girls. One of them tells you, "I am dating the perfect man. Everything is great. The communication between us, the sex, I can discuss everything with him. But now he sent me a video, where he cums on a photo of me. The whole photo was covered in his cum eeww. Now I don''t want to see him anymore."'
  884. $talkEvent[4] = 'You sit and chat with a couple of cute girls. One of them tells you, "I came home after going out with a guy, my knees were all red. When my mother saw it she seriously asked, if it was mosquito bites or allergies. I just nodded ashamed."'
  885. $talkEvent[5] = 'You sit and chat with a couple of cute girls. One of them says, "Blowjob week during menstruation is for wimps! I want anal week!!"'
  886. $talkEvent[6] = 'You sit and chat with a couple of cute girls. One of them tells you, "A friend of mine broke up with a girl so I asked him to come over and talk. I gave him a blowjob in the car to help him get over her."'
  887. $talkEvent[7] = 'You sit and chat with a couple of cute girls. One of them tells you, "I felt so bad when I had to tell my mother that I lost my virginity over two years ago."'
  888. $talkEvent[8] = 'You sit and chat with a couple of cute girls. One of them tells you, "After spending a day with my boyfriend in bed, his pillow always smells of his cologne. When he is not here I hug the pillow and masturbate. It feels amazing!"'
  889. $talkEvent[9] = 'You sit and chat with a couple of cute girls. One of them tells you, "I love when, during sex, my boyfriend moans in my ear. His sighs really turn me on. I often hold my ear near his mouth on purpose just to hear him moan."'
  890. $talkEvent[10] = 'You sit and chat with a couple of cute girls. One of them tells you, "I like how men go wild, when I touch them through their shorts. It really excites me and I do it as often as I can."'
  891. $talkEvent[11] = 'You sit and chat with a couple of cute girls. One of them tells you, "A year and a half ago, an attractive neighbor moved in. I really want to fuck him and constantly try to seduce him with my outfits, but we haven''t had sex yet. I''m afraid he will move out soon.'
  892. $talkEvent[12] = 'You sit and chat with a couple of cute girls. One of them tells you, "It really infuriates me, when I feel close to orgasm and then the guy wants to change position. It happens to me all the time."'
  893. $talkEvent[13] = 'You sit and chat with a couple of cute girls. One of them tells you, "The guys really love it when I caress their cocks and use my fingers massaging their ass. Then I move the tongue in there and start licking greedily."'
  894. $talkEvent[14] = 'You sit and chat with a couple of cute girls. One of them tells you, "I love to passionately kiss during sex, grab the guys ass and claw his back, mrrr."'
  895. $talkEvent[15] = 'You sit and chat with a couple of cute girls. One of them tells you, "Life becomes a pain, when you wear a man out to such a degree, that he doesn''t want to have sex anymore. I love it when they almost beg you to wrap your lips around their cock."'
  896. $talkEvent[16] = 'You sit and chat with a couple of cute girls. One of them tells you, "I met a guy once who immediately invited me to his home. I agreed and just like in every good affair we start kissing and undressing each other. But then I saw his small penis and broke down, laughing out loud. The guy didn''t seem hurt so I quickly sucked him off and went home. I haven''t seen him since."'
  897. $talkEvent[17] = 'You sit and chat with a couple of cute girls. One of them tells you, "My childhood dream was to become an astronaut. Now I not only want to be one, but have sex with one too. Right there in space. I want to experience a cosmic orgasm!"'
  898. $talkEvent[18] = 'You sit and chat with a couple of cute girls. One of them tells you, "My former boyfriend''s member was as big, as my whole arm. At first it hurt fucking him, but then I got used to it and really enjoyed it."'
  899. i = rand(1,18)
  900. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_2_<<i>>.jpg"></center>'
  901. '<<$talkEvent[i]>>'
  902. act 'Move away': gt $loc, $loc_arg
  903. end
  904. if $ARGS[0] = 'smoke':
  905. cls
  906. minut += 5
  907. gs 'stat'
  908. if girls_smoke = 0:
  909. girls_smoke = 1
  910. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_3_1.jpg"></center>'
  911. '"Girls, look what I stole from my worthless, addicted brother.", one of the girls says, showing you two bags of marijuana. "So, do you want to keep staring at me, or do you want to have fun?"'
  912. act 'Start smoking': gt 'rex_party_smallEvents', 'smoke'
  913. gs 'willpower', 'drugs', 'resist', 'medium'
  914. if will_cost <= pcs_willpwr:
  915. act 'Move away (<<will_cost>> Willpower)':
  916. *clr & cla
  917. gs 'willpower', 'pay', 'resist'
  918. gs 'stat'
  919. gt $loc, $loc_arg
  920. end
  921. else
  922. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  923. end
  924. else
  925. girls_smoke += 1
  926. pcs_horny += 30
  927. minut += 10
  928. gs 'drugs', 'joint', 1
  929. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_3_<<rand(2,6)>>.jpg"></center>'
  930. 'You pour some of the marijuana into the bowl, and fill water into the bong. Then you press a finger on the hole while using a lighter to burn the weed, drawing in smoke. After some time you begin to relax and embrace the mild euphoria.'
  931. act 'Chill':
  932. cls
  933. gs 'stat'
  934. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_4_<<rand(1,7)>>.jpg"></center>'
  935. i = rand(1,5)
  936. if i = 1:
  937. 'For a moment, you feel almost cut off from the outside world. Your body has found a general state of calm and relaxation. After a while the relaxing feeling goes away and you feel excitement wash over you.'
  938. elseif i = 2:
  939. 'Almost instantly you feel an increased sensitivity to touch as well as an enhanced vision, hearing and sense of smell. You hear the voices of others much clearer, see <<$pcs_nickname>> much brighter and feel the whole range of odors.'
  940. elseif i = 3:
  941. 'When you feel the effect you lose all sense of time as if everything stands still. Everyone speaks and moves very slowly and it seems like minutes are stretched into hours...'
  942. elseif i = 4:
  943. 'You feel like you can fly, entering a state of nirvana. You absorb the feeling of unreality. Your attention to details is greatly increased, nothing can escape your view.'
  944. elseif i = 5:
  945. 'The smoke makes you feel good, letting you focus on positive emotions. You are able to feel all kinds of effects, happy, pleased, delighted, euphoric.'
  946. end
  947. act 'Move away': gt $loc, $loc_arg
  948. end
  949. end
  950. end
  951. if $ARGS[0] = 'fun':
  952. cls
  953. minut += 5
  954. gs 'stat'
  955. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_5_<<rand(1,6)>>.jpg"></center>'
  956. 'The weed affects you greatly. It improves your mood and you become wildly aroused. "Well girls, why don''t we have some fun?"'
  957. act 'Rejoice':
  958. inhib_exp += rand(1,2)
  959. fun_rand = rand(1,3)
  960. if fun_rand = 1:
  961. cls
  962. minut += 5
  963. gs 'stat'
  964. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_1_<<rand(1,6)>>.jpg"></center>'
  965. 'You and the girls decide to have a contest for the best ass. You call over a couple of guys and stick out your butts for them to appraise. The drunk guys are all very impressed and it is difficult for them to settle on only one of the choices.'
  966. if Rex_Love = 1: 'You show off your ass right in front of Rex.'
  967. act 'Shake your booty':
  968. cls
  969. minut += 5
  970. gs 'stat'
  971. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_1_<<rand(7,11)>>.jpg"></center>'
  972. 'You seductively wag your ass. ' + iif(Rex_Love = 0,'One boy', 'Rex') + ' is standing right in front of you and you firmly press your buttocks in his palms. He exclaims, "Boys, I think I already know the winner!" You win the competition easily.'
  973. act 'Move away': gt $loc, $loc_arg
  974. end
  975. elseif fun_rand = 2:
  976. cls
  977. minut += 5
  978. gs 'stat'
  979. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_<<rand(1,5)>>.jpg"></center>'
  980. 'You become very curious and tell they girls it would be fun to compare your boobs. They agree and you all lift your shirts and look at each others breasts, estimating the size and shape, complimenting each other''s boobs.'
  981. act 'Further':
  982. if rand(1,2) = 1:
  983. cls
  984. minut += 5
  985. gs 'stat'
  986. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_6_<<rand(1,5)>>.jpg"></center>'
  987. 'You enthusiastically examine each others breasts, when a couple of guys burst into the room. You decide that the guys should evaluate your boobs with their hands and call them closer.'
  988. iif(Rex_Love = 0,'The guys have fun touching your boobs.', 'Rex is right in front of you and gently squeezes your breasts with his hands.')
  989. gs 'willpower', 'sex', 'resist', 'medium'
  990. if will_cost <= pcs_willpwr:
  991. act 'Move away (<<will_cost>> Willpower)':
  992. *clr & cla
  993. gs 'willpower', 'pay', 'resist'
  994. gs 'stat'
  995. gt $loc, $loc_arg
  996. end
  997. else
  998. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  999. end
  1000. act 'Moan':
  1001. cls
  1002. minut += 5
  1003. pcs_horny += 10
  1004. gs 'stat'
  1005. '<center><video autoplay loop src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_6_<<rand(6,7)>>.mp4"></video></center>'
  1006. 'Getting touched by ' + iif(Rex_Love = 0,'one of the guys', 'Rex') + ' you can''t help but to start moaning. When ' + iif(Rex_Love = 0,'the guy', 'Rex') + ' notices he begins to caress you even more insistently, grabbing your breasts firmly and licking your nipples. "Hey baby, if you like it so much, maybe we should go further." Then ' + iif(Rex_Love = 0,'the guy', 'Rex') + ' grabs you by the waist...'
  1007. act 'Surrender':
  1008. cls
  1009. if Rex_Love = 0:
  1010. guy += 1
  1011. gs 'npcgeneratec', 0, 'Boy from Rex''s Party', 17
  1012. gs 'boyStat', $npclastgenerated
  1013. else
  1014. sexa += 1
  1015. if rexSex = 0: rexSex = 1 & guy += 1
  1016. gs 'boyStat', 'A57'
  1017. end
  1018. gs 'stat'
  1019. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_6_8.jpg"></center>'
  1020. 'He pulls your clothes off and then lays down on his back on the floor, pulling his <<dick>>cm <<$dick_girth>> cock out. You climb on him straddling him, you lower yourself onto his cock, feeling is slip inside of your wet pussy, working your down till he is completely inside of you as deep as you can take him.'
  1021. 'The two of you begin to rhythmically fuck in front of the others. The girls cheer you on fervently, filming everything on their phones. "Come on <<$pcs_nickname>>, move your ass faster." You feel his hard member inside of you, and soon realize that he is about to come.'
  1022. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  1023. act 'Let him come on you':
  1024. cls
  1025. minut += 5
  1026. pcs_horny += 10
  1027. gs 'stat'
  1028. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_6_9.jpg"></center>'
  1029. iif(Rex_Love = 0,'The guy', 'Rex') + ' quickly pulls his dick out of you and pushes you off him. He stands up while you remain on your knees, he jerks his dick a few times until he starts shooting his cum all over you, leaving streaks of semen on your chest and abdomen. After he finishes the other girls sit down next to you and have a lot of fun as they lick all the sperm off of your body.'
  1030. gs 'cum_call', 'stomach', $boy
  1031. gs 'arousal', 'cuni', 15, 'exhibitionism'
  1032. gs 'arousal', 'end'
  1033. cumspclnt = 14 & gs 'cum_cleanup'
  1034. act 'Move away': gt $loc, $loc_arg
  1035. end
  1036. act 'Move faster':
  1037. cls
  1038. minut += 5
  1039. pcs_horny += 10
  1040. gs 'stat'
  1041. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_6_9.jpg"></center>'
  1042. iif(Rex_Love = 0,'The guy', 'Rex') + ' you move faster as he requests, and you push him over the top. He halfheartedly tries to push you off him, but then it is too late. He shoots his load into you, as you rock back and forth on top of him. You stand up, his cock coming out trailing spent sperm across him. The other girls sit down, cleaning him up with their tongues.'
  1043. gs 'arousal', 'vaginal', 5, 'exhibitionism'
  1044. gs 'arousal', 'end'
  1045. gs 'Cum_Manage'
  1046. act 'Move away': gt $loc, $loc_arg
  1047. end
  1048. end
  1049. end
  1050. else
  1051. cls
  1052. minut += 5
  1053. gs 'stat'
  1054. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_7_<<rand(1,5)>>.jpg"></center>'
  1055. 'You are having fun and get very excited. One of the girls, can''t resist and starts to lick your erect nipples, gently sucking on them and teasing them with her tongue. You enjoy it.'
  1056. gs 'willpower', 'cuni', 'resist', 'medium'
  1057. if will_cost <= pcs_willpwr:
  1058. act 'Move away (<<will_cost>> Willpower)':
  1059. *clr & cla
  1060. gs 'willpower', 'pay', 'resist'
  1061. gs 'stat'
  1062. gt $loc, $loc_arg
  1063. end
  1064. else
  1065. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1066. end
  1067. if pcs_horny > 50:
  1068. act 'Moan':
  1069. cls
  1070. minut += 10
  1071. orgasm += 1
  1072. pcs_horny = 0
  1073. pcs_mood = 100
  1074. lesbian += 1
  1075. gs 'stat'
  1076. if rand(1,2) = 1:
  1077. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_7_6.jpg"></center>'
  1078. 'You can''t help but start to moan and the girls quickly spread you legs an begin to lick your holes in unison. You quickly come from the sensation of having every hole licked and caressed.'
  1079. else
  1080. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_7_7.jpg"></center>'
  1081. 'You start to moan and the girls quickly lay you down on your back an start to caress you with their tongues. They take turns kissing you and licking your pussy, quickly bringing you to orgasm.'
  1082. end
  1083. act 'Move away': gt $loc, $loc_arg
  1084. end
  1085. end
  1086. end
  1087. end
  1088. elseif fun_rand = 3:
  1089. cls
  1090. minut += 5
  1091. gs 'stat'
  1092. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_8_<<rand(1,3)>>.jpg"></center>'
  1093. 'You call in the guys and announce that you and the girls want to check out the contents of their pants. Excitedly they unzip their pants and pull out their dicks.'
  1094. iif(reksMeet = 1,'You have Rex'' member in front of you and compare it with your arm.', 'One of the more persistent guys comes up to you and you compare his penis with your arm.')
  1095. gs 'willpower', 'bj', 'resist', 'medium'
  1096. if will_cost <= pcs_willpwr:
  1097. act 'Move away (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt $loc, $loc_arg
  1098. else
  1099. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1100. end
  1101. act 'Suck him':
  1102. cls
  1103. gs 'arousal', 'bj', 5
  1104. if Rex_Love = 1: bja += 1
  1105. gs 'stat'
  1106. $party_suck = {
  1107. act 'Make him cum':
  1108. cls
  1109. minut += 5
  1110. spafinloc = 12
  1111. gs 'cum_manage'
  1112. spafinloc = 11
  1113. gs 'cum_manage'
  1114. gs 'stat'
  1115. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_8_<<rand(6,12)>>.jpg"></center>'
  1116. 'You open your mouth and stick out your tongue.'
  1117. iif(Rex_Love = 0,'The guy', 'Rex') + ' cums hard, filling up your mouth and smearing sperm all over your face.'
  1118. act 'Move away': gt $loc, $loc_arg
  1119. end
  1120. }
  1121. if rand(1,2) = 1:
  1122. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_8_4.jpg"></center>'
  1123. 'Strong desire clouds your mind, and you grab ' + iif(Rex_Love = 0,'the guy''s', 'Rex''s') + ' member in full view of all the girls. You gently masturbate it with your hand, then take it in your mouth and begin to suck on its head.'
  1124. iif(Rex_Love = 0,'The guy', 'Rex') + ' can''t resist for long and starts...'
  1125. dynamic $party_suck
  1126. else
  1127. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/rekshome/party/reksparty_party_home_fun_2_8_5.jpg"></center>'
  1128. 'One of the girls takes the dick in front of her in her mouth. Feeling encouraged you take ' + iif(Rex_Love = 0,'the guy''s', 'Rex''s') + ' dick and gently masturbate it with your hand. Soon you put it in your mouth and begin to suck on its head, watching the other girl giving head at the same time.'
  1129. iif(Rex_Love = 0,'The guy', 'Rex') + ' can''t resist for long and starts...'
  1130. dynamic $party_suck
  1131. end
  1132. end
  1133. end
  1134. end
  1135. gs 'willpower', 'exhib', 'resist', 'easy'
  1136. if will_cost <= pcs_willpwr:
  1137. act 'Move away (<<will_cost>> Willpower)':
  1138. *clr & cla
  1139. gs 'willpower', 'pay', 'resist'
  1140. gs 'stat'
  1141. gt $loc, $loc_arg
  1142. end
  1143. else
  1144. act 'Move away (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  1145. end
  1146. end
  1147. --- rex_party_smallEvents ---------------------------------