sex_ev_start.qsrc 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. # sex_ev_start
  2. !! ------------------------- Booty Call Content Start -----------------------
  3. if $ARGS[0] = 'neighborhood_image':
  4. if $loc = 'pav_residential':
  5. if month >= 11 or month <= 3:
  6. if daystage = 2 or daystage = 3:
  7. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/pavreswinter.jpg"></center>'
  8. else
  9. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/pavreswintern.jpg"></center>'
  10. end
  11. else
  12. if daystage = 2 or daystage = 3:
  13. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/pavres.jpg"></center>'
  14. else
  15. '<center><img <<$set_imgh>> src="images/locations/pavlovsk/pavresn_'+ rand(1,2) +'.jpg"></center>'
  16. end
  17. end
  18. elseif $loc = 'city_residential':
  19. if month >= 11 or month <= 3:
  20. if daystage = 2 or daystage = 3:
  21. '<center><img <<$set_imgh>> src="images/locations/city/residential/streetw.jpg"></center>'
  22. else
  23. '<center><img <<$set_imgh>> src="images/locations/city/residential/streetwn.jpg"></center>'
  24. end
  25. else
  26. if daystage = 2 or daystage = 3:
  27. '<center><img <<$set_imgh>> src="images/locations/city/residential/street.jpg"></center>'
  28. else
  29. '<center><img <<$set_imgh>> src="images/locations/city/residential/street_night.jpg"></center>'
  30. end
  31. end
  32. elseif $loc = 'city_center':
  33. if month >= 11 or month <= 3:
  34. if daystage = 2 or daystage = 3:
  35. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/downw.jpg"></center>'
  36. else
  37. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/downwn.jpg"></center>'
  38. end
  39. else
  40. if daystage = 2 or daystage = 3:
  41. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/down.jpg"></center>'
  42. else
  43. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/down_night.jpg"></center>'
  44. end
  45. end
  46. end
  47. end
  48. if $ARGS[0] = 'exit_set':
  49. !! exit should be based on type of apartment and location
  50. if $sex_ev['loc'] ! 'pc_home':
  51. if npc_residence[$boy] = 1:
  52. !! Pav residential exit
  53. gt 'pav_residential'
  54. elseif npc_residence[$boy] = 2:
  55. !! Student dorms exit
  56. gt 'city_island'
  57. elseif npc_residence[$boy] = 3:
  58. !! St. Petersburg Residential exit
  59. gt 'city_residential'
  60. elseif npc_residence[$boy] = 4:
  61. !! St. Petersburg City Center exit
  62. gt 'city_center'
  63. !!{ disabled for bug testing
  64. else
  65. if $region = 'pav':
  66. gt 'pav_residential'
  67. elseif $region = 'pav':
  68. gt 'pav_commercial'
  69. elseif $region = 'pav_park':
  70. gt 'pav_park', 'start'
  71. elseif $region = 'city':
  72. gt 'city_residential'
  73. elseif $region = 'city_center':
  74. gt 'city_center'
  75. elseif $region = 'city_park':
  76. gt 'city_park', 'start'
  77. elseif $region = 'city_island':
  78. gt 'city_island'
  79. end}
  80. end
  81. else
  82. gt 'bedrPar'
  83. end
  84. end
  85. if $ARGS[0] = 'initiate_pre':
  86. gs 'boystat', $ARGS[1]
  87. !! if $npc_rel_type[$boy] = 'husband' or $npc_rel_type[$boy] = 'boyfriend' or $npc_rel_type[$boy] = 'fuckbuddy':
  88. if $npc_rel_type[$boy] ! '':
  89. gs 'sex_ev_start', 'lover_initiate'
  90. else
  91. gs 'sex_ev_start', 'hookup_initiate'
  92. end
  93. end
  94. if $ARGS[0] = 'boystat_init':
  95. if sex_ev['boystat_done'] = 0:
  96. gs 'boystat', $ARGS[1]
  97. sex_ev['boystat_done'] = 1
  98. end
  99. end
  100. if $ARGS[0] = 'lover_initiate':
  101. if $npc_rel_type[$boy] = 'husband':
  102. $sex_ev['type'] = 'married_sex'
  103. elseif $npc_rel_type[$boy] = 'boyfriend':
  104. $sex_ev['type'] = 'dating_sex'
  105. elseif $npc_rel_type[$boy] = 'fuckbuddy':
  106. $sex_ev['type'] = 'booty_call'
  107. if $booty_call_hotel[$boy] = 'pav':
  108. gs 'sex_ev_start', 'pav_hotel_img_init'
  109. gt 'sex_ev_start', 'fb_invited_start'
  110. elseif $booty_call_hotel[$boy] = 'city':
  111. gs 'sex_ev_start', 'city_hotel_img_init'
  112. gt 'sex_ev_start', 'fb_invited_start'
  113. else
  114. if (booty_call_invite[$boy] = daystart or npc_booty_call_date[$boy] = daystart or npc_booty_call_date[$boy] = daystart) and npc_last_booty_call[$boy] ! daystart:
  115. gs 'sex_ev_start', 'lover_home_img_init'
  116. gt 'sex_ev_start', 'fb_invited_start'
  117. elseif npc_start_free_time[$boy] >= hour and hour <= npc_end_free_time[$boy] and npc_last_booty_call[$boy] ! daystart and npc_no_booty_call[$boy] ! daystart:
  118. gs 'sex_ev_start', 'lover_home_img_init'
  119. gt 'sex_ev_start', 'fb_uninvited_start'
  120. else
  121. gs 'sex_ev_start', 'lover_home_img_init'
  122. gs 'sex_ev_start', 'neighborhood_image'
  123. 'You knock on <<$npc_firstname[$boy]>>''s door but there is no answer.'
  124. act'Leave':gt $loc
  125. end
  126. end
  127. elseif $npc_rel_type[$boy] = 'sugar_daddy':
  128. $sex_ev['type'] = 'booty_call'
  129. sugar_daddy_call[$boy] = 1
  130. if $booty_call_hotel[$boy] = 'pav':
  131. gs 'sex_ev_start', 'pav_hotel_img_init'
  132. gt 'sex_ev_start', 'fb_invited_start'
  133. elseif $booty_call_hotel[$boy] = 'city':
  134. gs 'sex_ev_start', 'city_hotel_img_init'
  135. gt 'sex_ev_start', 'fb_invited_start'
  136. else
  137. if (booty_call_invite[$boy] = daystart or npc_booty_call_date[$boy] = daystart or npc_booty_call_date[$boy] = daystart) and npc_last_booty_call[$boy] ! daystart:
  138. gs 'sex_ev_start', 'lover_home_img_init'
  139. gt 'sex_ev_start', 'fb_invited_start'
  140. !!{elseif npc_start_free_time[$boy] >= hour and hour <= npc_end_free_time[$boy] and npc_last_booty_call[$boy] ! daystart and npc_no_booty_call[$boy] ! daystart:
  141. this is disabled until cheating events can be established
  142. gs 'sex_ev_start', 'lover_home_img_init'
  143. gt 'sex_ev_start', 'fb_uninvited_start'}
  144. else
  145. gs 'sex_ev_start', 'lover_home_img_init'
  146. gs 'sex_ev_start', 'neighborhood_image'
  147. 'You knock on <<$npc_firstname[$boy]>>''s door but there is no answer.'
  148. act'Leave':gt $loc
  149. end
  150. end
  151. end
  152. end
  153. if $ARGS[0] = 'hookup_initiate':
  154. $sex_ev['type'] = 'hookup'
  155. if $boy ! $npclastgenerated and $boy ! $npclastsaved:
  156. if npcgen_lastrun = 1:
  157. gs 'boystat', $npclastgenerated
  158. elseif npcgen_lastrun = 2:
  159. gs 'boystat', $npclastsaved
  160. end
  161. end
  162. stat['hookup'] += 1
  163. end
  164. if $ARGS[0] = 'pc_home_img_init':
  165. $sex_ev['loc'] = 'pc_home'
  166. if $loc = 'korrPar' or $home['current'] = 'parents_home':
  167. $sex_ev['bed_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/bedrpar.jpg"></center>'
  168. $sex_ev['bath_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/vanrpar.jpg"></center>'
  169. $sex_ev['kitchen_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/kuhrpar.jpg"></center>'
  170. $sex_ev['living_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/sitrpar.jpg"></center>'
  171. $sex_ev['hall_way'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/home/korrpar.jpg"></center>'
  172. end
  173. end
  174. if $ARGS[0] = 'lover_home_img_init':
  175. $sex_ev['loc'] = 'npc_home'
  176. $sex_ev['bed_room'] = $npc_apt_bedroom[$boy]
  177. $sex_ev['bath_room'] = $npc_apt_bathroom[$boy]
  178. $sex_ev['kitchen_room'] = $npc_apt_kitchen[$boy]
  179. $sex_ev['living_room'] = $npc_apt_livingroom[$boy]
  180. $sex_ev['hall_way'] = $npc_apt_hall[$boy]
  181. end
  182. if $ARGS[0] = 'pav_hotel_img_init':
  183. $sex_ev['loc'] = 'hotel_room'
  184. $sex_ev['bed_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.normal.jpg"></center>'
  185. $sex_ev['bath_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.normal1.jpg"></center>'
  186. $sex_ev['kitchen_room'] = 'none'
  187. $sex_ev['living_room'] = 'none'
  188. $sex_ev['hall_way'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.normal.jpg"></center>'
  189. end
  190. if $ARGS[0] = 'city_hotel_img_init':
  191. $sex_ev['loc'] = 'hotel_room'
  192. $sex_ev['bed_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.best.jpg"></center>'
  193. $sex_ev['bath_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.best1.jpg"></center>'
  194. $sex_ev['kitchen_room'] = 'none'
  195. $sex_ev['living_room'] = 'none'
  196. $sex_ev['hall_way'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.best.jpg"></center>'
  197. end
  198. if $ARGS[0] = 'fb_npc_home_start':
  199. !! gs 'boystat', $ARGS[1]
  200. $sex_ev['type'] = 'booty_call'
  201. if (booty_call_invite[$boy] = daystart or npc_booty_call_date[$boy] = daystart or npc_booty_call_date[$boy] = daystart) and npc_last_booty_call[$boy] ! daystart:
  202. gt 'sex_ev_start', 'fb_invited_start'
  203. elseif npc_start_free_time[$boy] >= hour and hour <= npc_end_free_time[$boy] and npc_last_booty_call[$boy] ! daystart and npc_no_booty_call[$boy] ! daystart:
  204. gt 'sex_ev_start', 'fb_uninvited_start'
  205. else
  206. gs 'sex_ev_start', 'neighborhood_image'
  207. 'You knock on <<$npc_firstname[$boy]>>''s door but there is no answer.'
  208. act'Leave':gt $loc
  209. end
  210. end
  211. if $ARGS[0] = 'hookup_pc_home_start':
  212. gs 'sex_ev_start', 'hookup_initiate'
  213. gs 'sex_ev_start', 'pc_home_img_init'
  214. gs 'sex_ev_start', 'begin'
  215. gs 'sex_ev_start', 'undress'
  216. end
  217. if $ARGS[0] = 'hookup_npc_home_start':
  218. gs 'sex_ev_start', 'hookup_initiate'
  219. gs 'sex_ev_start', 'lover_home_img_init'
  220. gs 'sex_ev_start', 'begin'
  221. gs 'sex_ev_start', 'undress'
  222. end
  223. if $ARGS[0] = 'hookup_hotel_start':
  224. gs 'sex_ev_start', 'hookup_initiate'
  225. if $region = 'pav':
  226. gs 'sex_ev_start', 'pav_hotel_img_init'
  227. else
  228. gs 'sex_ev_start', 'city_hotel_img_init'
  229. end
  230. gs 'sex_ev_start', 'begin'
  231. gs 'sex_ev_start', 'undress'
  232. end
  233. if $ARGS[0] = 'hookup_party_start':
  234. gs 'sex_ev_start', 'hookup_initiate'
  235. $sex_ev['loc'] = 'house_party'
  236. $sex_ev['bed_room'] = '<center><img <<$set_imgh>> src="images/shared/romance/lovers/homes/multibedroom/<<rand(1,2)>>/bedroom.jpg"></center>'
  237. gs 'sex_ev_start', 'begin'
  238. gs 'sex_ev_start', 'undress'
  239. end
  240. if $ARGS[0] = 'unique_npc_start':
  241. sex_ev['unique_npc'] = 1
  242. gs 'sex_ev_start', 'lover_home_img_init'
  243. gs 'sex_ev_start', 'begin'
  244. gs 'sex_ev_start', 'undress'
  245. end
  246. if $ARGS[0] = 'unique_npc_bed_start':
  247. sex_ev['unique_npc'] = 1
  248. gs 'sex_ev_start', 'lover_home_img_init'
  249. gs 'sex_ev_start', 'begin'
  250. gs 'sex_ev_start', 'undress_function'
  251. gs 'sex_ev_foreplay', 'bed_start'
  252. end
  253. if $ARGS[0] = 'begin':
  254. $location_type = 'event'
  255. gs 'themes', 'indoors'
  256. if minut > 45:
  257. sex_ev['start_hour'] = hour + 1
  258. else
  259. sex_ev['start_hour'] = hour
  260. end
  261. gs 'sex_ev_stats', 'starting_stats'
  262. gs 'sex_ev_stats', 'npc_update'
  263. if sugar_daddy_call[$boy] = 1 or sex_ev['prostitution'] = 1:
  264. $sex_ev['prostitution_flag'] = 'prostitution'
  265. sex_ev['prostitution'] = 1
  266. npc_sugar_daddy_timer[$boy] = daystart + 10
  267. end
  268. npc_last_booty_call[$boy] = daystart
  269. end
  270. if $ARGS[0] = 'fb_hotel_start':
  271. if $region = 'pav':
  272. gs 'sex_ev_start', 'pav_hotel_img_init'
  273. else
  274. gs 'sex_ev_start', 'city_hotel_img_init'
  275. end
  276. gs 'sex_ev_start', 'begin'
  277. gs 'sex_ev_start', 'undress'
  278. end
  279. if $ARGS[0] = 'fb_invited_start':
  280. !! $loc = 'sex_ev_start'
  281. !! $loc_arg = 'fb_invited_start'
  282. !! savegame 'autosave_sex_ev.sav'
  283. gs 'sex_ev_start', 'begin'
  284. $sex_ev['hall_way']
  285. 'You knock on the door and <<$npc_firstname[$boy]>> opens up.'
  286. if pcs_sweat > 29:
  287. !! if AlbinaQW['startletsday'] = daystart:
  288. act'Didn''t have time':
  289. cla & *nl
  290. '"I didn''t have time," you smile. "I came as soon as I saw your message."'
  291. gs 'sex_ev_start', 'fuck_or_what'
  292. gs 'sex_ev_shower', 'before_borrow_shower'
  293. end
  294. if stat['last_workout'] > totminut - 120:
  295. act'Working out':
  296. cla & *nl
  297. if npc_gymrat[$boy] = 1:
  298. '"Yeah," you smile back.'
  299. else
  300. '"I was working out when you messaged," you shrug.'
  301. end
  302. gs 'sex_ev_start', 'fb_sweaty'
  303. end
  304. end
  305. if stat['dance_day'] = daystart:
  306. act'Came from dance':
  307. cla & *nl
  308. '"I came straight from dance practice," you shrug.'
  309. gs 'sex_ev_start', 'fb_sweaty'
  310. end
  311. end
  312. !!{ act'Came from football':
  313. cla & *nl
  314. '"I was playing football when I saw your message," you shrug.'
  315. gs 'sex_ev_start', 'fb_sweaty'
  316. end}
  317. if stat['volleyball_day'] = daystart:
  318. act'Came from volleyball':
  319. cla & *nl
  320. '"I came straight from volleyball practice," you shrug.'
  321. gs 'sex_ev_start', 'fb_sweaty'
  322. end
  323. end
  324. if stat['run_day'] = daystart:
  325. act'I was running':
  326. cla & *nl
  327. '"I was on a run when I saw your message," you shrug.'
  328. gs 'sex_ev_start', 'fb_sweaty'
  329. end
  330. end
  331. act'Came from work':
  332. cla & *nl
  333. '"I came straight from work," you shrug. "Didn''t want to go home and clean up first."'
  334. gs 'sex_ev_start', 'fuck_or_what'
  335. gs 'sex_ev_shower', 'before_borrow_shower'
  336. end
  337. gs 'sex_ev_start', 'couldnt_wait'
  338. !! end
  339. if pcs_sweat > 39 and npc_gymrat[$boy] < 1:
  340. if npc_argumentative[$boy] = 1:
  341. '"What the fuck?" he says, wrinkling his nose. "You stink."'
  342. else
  343. '"A little fresh today, huh?" he says, as the scent of your sweaty body makes him wince; though the smiles wryly.'
  344. end
  345. elseif pcs_sweat > 29:
  346. if rand(1,2) = 1:
  347. '"Did I interrupt a workout?" he smirks, looking your sweaty body up and down.'
  348. else
  349. '"Hey," he says, looking up and down your sweaty body in amusement. "You''re soaking wet."'
  350. if pcs_horny >= 70:
  351. act'Yeah':
  352. cla & *nl
  353. '"Yeah," you say huskily, letting your arousal seep into your voice. <<$npc_firstname[$boy]>> locks eyes with you for a split second.'
  354. '"Bed?"'
  355. '"Now," you pant and rush inside.'
  356. act'Clothes. Off. Now.':gt 'sex_ev_start', 'undress'
  357. end
  358. end
  359. end
  360. end
  361. else
  362. if npc_selfish[$boy] > 0 and rand(0,1) = 1:
  363. '"About fucking time," he says.'
  364. else
  365. '"Hey," he grins at you.'
  366. end
  367. act'Hey':
  368. cla & *nl
  369. '"Hey," you smile back. "So..."'
  370. if npc_selfish[$boy] > 0 and rand(0,1) = 1:
  371. '"Let''s get you naked," <<$npc_firstname[$boy]>> says, pulling you inside and immediately tugging at your clothes.'
  372. else
  373. '"Come on in," he says, and leads you inside.'
  374. end
  375. act'Take it to the bed':gt 'sex_ev_start', 'undress'
  376. end
  377. act'Shut up and let''s fuck':
  378. cla & *nl
  379. if npc_apt_type[$boy] < 3:
  380. '"Shut up and fuck me already," you say, putting your hands on his chest and pushing him inside towards the bed. "I''m here to fuck. So let''s fuck."'
  381. else
  382. '"Shut up and fuck me already," you say, putting your hands on his chest and pushing him inside towards the bedroom. "I''m here to fuck. So let''s fuck."'
  383. end
  384. act'Undress':gt 'sex_ev_start', 'undress'
  385. end
  386. if pcs_makeup > 1:
  387. act'Don''t mess up my makeup':
  388. sex_ev['dont_ruin_makeup'] = 1
  389. cla & *clr
  390. $sex_ev['hall_way']
  391. if npc_apt_type[$boy] < 3:
  392. '"Don''t mess up my makeup," you say, walking past him towards the bed.'
  393. else
  394. '"Don''t mess up my makeup," you say, walking past him towards the bedroom.'
  395. end
  396. act'Undress':gt 'sex_ev_start', 'undress'
  397. if date = daystart and date_hour_meet <= hour + 1:
  398. act'I have a date soon':
  399. cla & *clr
  400. $sex_ev['hall_way']
  401. sex_ev['date_soon'] = 1
  402. if npc_apt_type[$boy] < 3:
  403. '"Don''t mess up my makeup," you say, walking past him towards the bed. "I have a date right after this."'
  404. else
  405. '"Don''t mess up my makeup," you say, walking past him towards the bedroom. "I have a date right after this."'
  406. end
  407. act'Undress':gt 'sex_ev_start', 'undress'
  408. end
  409. elseif date = daystart:
  410. act'I have a date later':
  411. cla & *clr
  412. $sex_ev['hall_way']
  413. sex_ev['date_soon'] = 1
  414. if npc_apt_type[$boy] < 3:
  415. '"Don''t mess up my makeup," you say, walking past him towards the bed. "I have a date later. I don''t want to do it again."'
  416. else
  417. '"Don''t mess up my makeup," you say, walking past him towards the bed. "I have a date later. I don''t want to do it again."'
  418. end
  419. act'Undress':gt 'sex_ev_start', 'undress'
  420. end
  421. end
  422. if hour >= 18 and $region = 'pav' and (week = 5 or week = 6):
  423. act'I''m going to the disco':
  424. cla & *clr
  425. $sex_ev['hall_way']
  426. sex_ev['disco_after'] = 1
  427. !!if npc_apt_type[$boy] < 3:
  428. '"Don''t mess up my makeup," you say as you let him pull you inside. "I''m going to the disco after this."'
  429. !!else
  430. !! '"Don''t mess up my makeup," you say, walking past him towards the bedroom. "I''m going to the disco after this."'
  431. !!end
  432. act'Undress':gt 'sex_ev_start', 'undress'
  433. end
  434. end
  435. end
  436. end
  437. if kanikuli = 0 and mid($start_type,1,2) = 'sg' and SchoolAtestat = 0 and SchoolBlock = 0 and week < 6 and hour < 9 and hour >= 6:
  438. act'Make it fast (school)':
  439. cla & *nl
  440. '"Let''s make this fast," you say. "I have to get to class."'
  441. act'Undress':gt 'sex_ev_start', 'undress'
  442. end
  443. end
  444. if mc_inventory['normal_condoms'] > 0 and npc_bareback[$boy] = 0:
  445. act'I brought condoms':
  446. pc_buy_condoms[$boy] = 2
  447. cla & *nl
  448. '"I brought condoms," you grin, holding up the rubbers for him to see.'
  449. if know_virgin[$boy] = 1:
  450. '<<$npc_firstname[$boy]>> stares in awe.'
  451. '"Does that mean...?"'
  452. '"Come and find out," you say, moving inside.'
  453. else
  454. '"Fuck yeah," he says as he drags you inside.'
  455. end
  456. act'Undress':gt 'sex_ev_start', 'undress'
  457. end
  458. end
  459. if mc_inventory['morning_after_pill'] > 0 and npc_bareback[$boy] = 0 and npc_know_bc[$boy] = 0:
  460. act'Brought a morning after pill':
  461. cla
  462. sex_ev['skip_condom'] = 1
  463. !! sex_ev['no_condom'] = 1
  464. sex_ev['ma_pill'] = 1
  465. act'No condoms':
  466. cla & *clr
  467. $sex_ev['bed_room']
  468. '"I brought a morning after pill," you whisper in his ear. "<i>We can skip the condoms today.</i>"'
  469. act'Undress':gt 'sex_ev_start', 'undress'
  470. end
  471. act'Come inside me':
  472. sex_ev['creampie_allowance'] = 1
  473. cla & *clr
  474. $sex_ev['bed_room']
  475. '"I brought a morning after pill," you whisper in his ear. "<i>Fill me with your cum.</i>"'
  476. act'Undress':gt 'sex_ev_start', 'undress'
  477. end
  478. end
  479. end
  480. if $pantyworntype = 'none' and $braworntype = 'none':
  481. act'Tell him you''re not wearing underwear':
  482. cla & *clr
  483. $sex_ev['bed_room']
  484. 'You step inside and draw close to <<$npc_firstname[$boy]>>. You lean in and whisper in his ear...'
  485. *nl
  486. '<i>"I''m not wearing any underwear."</i>'
  487. act'Undress':gt 'sex_ev_start', 'undress'
  488. end
  489. end
  490. if birth_control['think_safe'] = 1 and npc_know_bc[$boy] = 0:
  491. act'Tell him you''re on birth control':
  492. gs 'sex_ev_stats', 'birth_control_know'
  493. cla & *clr
  494. $sex_ev['bed_room']
  495. 'You step inside and draw close to <<$npc_firstname[$boy]>>. You lean in and whisper in his ear...'
  496. *nl
  497. act'No condoms':
  498. cla & *clr
  499. $sex_ev['bed_room']
  500. if npc_know_bc_not_effective[$boy] = 1 or npc_bc_promise[$boy] = 1:
  501. '"<i>My birth control is ready. Let''s go bareback today.</i>"'
  502. else
  503. '"<i>I''m on birth control now. Let''s go bareback today.</i>"'
  504. end
  505. act'Undress':gt 'sex_ev_start', 'undress'
  506. end
  507. act'Creampies are okay today':
  508. sex_ev['creampie_allowance'] = 1
  509. cla & *clr
  510. $sex_ev['bed_room']
  511. if npc_know_bc_not_effective[$boy] = 1 or npc_bc_promise[$boy] = 1:
  512. '"<i>My birth control is ready. You can come inside me.</i>"'
  513. else
  514. '"<i>I''m on birth control now. You can come inside me.</i>"'
  515. end
  516. act'Undress':gt 'sex_ev_start', 'undress'
  517. end
  518. end
  519. elseif mesec > 0:
  520. act'"I''m on my period"':
  521. cla & *clr
  522. $sex_ev['bed_room']
  523. 'You step inside and draw close to <<$npc_firstname[$boy]>>. You lean in and whisper in his ear...'
  524. *nl
  525. act'No condoms':
  526. cla & *clr
  527. $sex_ev['bed_room']
  528. '"<i>I''m on my period right now. Let''s go bareback today.</i>"'
  529. act'Undress':gt 'sex_ev_start', 'undress'
  530. end
  531. act'Come inside me':
  532. sex_ev['creampie_allowance'] = 1
  533. cla & *clr
  534. $sex_ev['bed_room']
  535. '"<i>I''m on my period right now. You can come inside me.</i>"'
  536. act'Undress':gt 'sex_ev_start', 'undress'
  537. end
  538. end
  539. end
  540. if npc_shave_promise[$boy] > 0 and pcs_pubes < 4:
  541. act'Tell him you shaved':
  542. cla & *clr
  543. $sex_ev['bed_room']
  544. '"I have a special surprise too," you say, stepping inside and drawing close to <<$npc_firstname[$boy]>>. You lean in and whisper in his ear, "<i>I shaved my pussy for you.</i>"'
  545. act'Undress':gt 'sex_ev_start', 'undress'
  546. end
  547. end
  548. !! act'Stumble over to the couch':gt 'sex_ev_start', 'couch_start'
  549. end
  550. end
  551. if $ARGS[0] = 'couldnt_wait':
  552. act'Couldn''t wait':
  553. cla & *nl
  554. '"I couldn''t wait," you grin. "<i>Can''t</i> wait. Bedroom?"'
  555. '"Bedroom," he nods and drags you inside.'
  556. act'Clothes. Off. Now.':gt 'sex_ev_start', 'undress'
  557. end
  558. end
  559. if $ARGS[0] = 'fuck_or_what':
  560. act'Are we going to fuck or what?':
  561. cla & *nl
  562. '"So are are we going to fuck or are you going just to keep standing there?" you grin.'
  563. '<<$npc_firstname[$boy]>> doesn''t say anything, instead grabbing you by the arms and dragging you inside.'
  564. act'Clothes. Off. Now.':gt 'sex_ev_start', 'undress'
  565. end
  566. end
  567. if $ARGS[0] = 'fb_sweaty':
  568. if npc_gymrat[$boy] = 1 or $npc_apt_spare[$boy] = 'gym':
  569. gs 'sex_ev_start', 'fuck_or_what'
  570. gs 'sex_ev_shower', 'before_borrow_shower'
  571. else
  572. '"And you couldn''t take a shower first?"'
  573. gs 'sex_ev_start', 'couldnt_wait'
  574. gs 'sex_ev_shower', 'before_borrow_shower'
  575. end
  576. end
  577. if $ARGS[0] = 'fb_uninvited_start':
  578. gs 'sex_ev_start', 'begin'
  579. gs 'sex_ev_start', 'lover_home_img_init'
  580. $sex_ev['hall_way']
  581. 'You knock on the door and you hear the latch unlock and the door swings open.'
  582. act'I was in the neighborhood':
  583. cla & *nl
  584. '"Hey," you smile at <<$npc_firstname[$boy]>> who blinks in surprise. "I was in the neighborhood and I started thinking about you, wondering if you wanted to fool around some...?"'
  585. if npc_booty_call_date[$boy] = daystart:
  586. '"I was just about to text you," he grins.'
  587. 'So am I coming in or what?" you grin back.'
  588. else
  589. '"You couldn''t have called first?"'
  590. 'You shrug.'
  591. '"Wanted to surprise you. So am I coming in or what?"'
  592. end
  593. if rand(1,10) < npc_sexdrive[$boy]:
  594. if npc_humor[$boy] = 2 and $npc_cum_pref[$boy] = 'creampie':
  595. '"I''m the only one who''s gonna be coming inside," he says, leering at your ass as he steps aside to let you in.'
  596. elseif npc_humor[$boy] = 2 and $npc_cum_pref[$boy] = 'mouth':
  597. '"I''m the only one who''s gonna be coming inside," he says, leering at your ass as he steps aside to let you in. "In your mouth that is."'
  598. elseif npc_booty_call_date[$boy] = daystart:
  599. '"As long as those clothes are coming off in the next 10 seconds," he says, leering at your ass as he steps aside to let you in.'
  600. else
  601. '"Well I won''t say no to a free fuck," he smirks, stepping aside to let you in and leering at your ass as you walk past.'
  602. end
  603. act'Go to the bedroom':gt 'sex_ev_start', 'undress'
  604. else
  605. gs 'sex_ev_start', 'uninvited_deny'
  606. end
  607. end
  608. act'Surprise!':
  609. cla & *nl
  610. if rand(1,10) < npc_sexdrive[$boy]:
  611. '"Surprise!" you shout gleefully at a startled <<$npc_firstname[$boy]>>. "Just happened to be walking by and I thought I might drop in, see if you wanted to fool around?" You grin at him, bouncing your eyebrows suggestively.'
  612. '"Well I won''t say no if that''s what you want," he smirks, stepping aside to let you in and leering at your ass as you walk past.'
  613. act'Go to the bedroom':gt 'sex_ev_start', 'undress'
  614. else
  615. gs 'sex_ev_start', 'uninvited_deny'
  616. end
  617. end
  618. act'I need a good fuck':
  619. cla & *nl
  620. if rand(1,10) < npc_sexdrive[$boy]:
  621. '<<$npc_firstname[$boy]>> stands there startled as you step forward, putting your hand on his chest.'
  622. '"I need a good fuck and I need it right now," you say.'
  623. 'A moment passes with you staring into his eyes with a smouldering gaze before he drags you inside, slamming the door behind you.'
  624. act'Go to the bedroom':gt 'sex_ev_start', 'undress'
  625. else
  626. gs 'sex_ev_start', 'uninvited_deny'
  627. end
  628. end
  629. end
  630. if $ARGS[0] = 'uninvited_deny':
  631. npc_no_booty_call[$boy] = daystart
  632. '"You should''ve texted," <<$npc_firstname[$boy]>> says shaking his head. "I''m not in the mood, maybe some other time."'
  633. 'He closes the door on you abruptly and you''re left standing outside horny and alone.'
  634. act'Leave':gt $loc
  635. end
  636. if $ARGS[0] = 'girlfriend_surprise1':
  637. 'You knock on the door and you hear the latch unlock and the door swings open.'
  638. act'I was in the neighborhood':
  639. cla & *nl
  640. '"Hey, I was in the neighborhood-" you start to smile and freeze when you realize it''s not <<$npc_firstname[$boy]>>, but another woman standing in front of you.'
  641. end
  642. act'Surprise!':
  643. cla & *nl
  644. '"Surprise!" you shout gleefully at a startled <<$npc_firstname[$boy]>>. "Just happened to be walking by and I thought I might drop in, see if you wanted to fool around?" You grin at him, bouncing your eyebrows suggestively.'
  645. '"Well I won''t say no if that''s what you want," he smirks, stepping aside to let you in and leering at your ass as you walk past.'
  646. act'Go to the bedroom':gt 'sex_ev_start', 'undress'
  647. end
  648. act'I need a good fuck':
  649. cla & *nl
  650. '<<$npc_firstname[$boy]>> stands there startled as you step forward, putting your hand on his chest.'
  651. '"I need a good fuck and I need it right now," you say.'
  652. 'A moment passes with you staring into his eyes with a smouldering gaze before he drags you inside, slamming the door behind you.'
  653. act'Go to the bedroom':gt 'sex_ev_start', 'undress'
  654. end
  655. if drunk = 1:
  656. cla & *nl
  657. act'Guess who''s drunk!':
  658. end
  659. end
  660. end
  661. if $ARGS[0] = 'girlfriend_surprise2':
  662. end
  663. if $ARGS[0] = 'girlfriend_cheater1':
  664. 'You walk into <<$npc_firstname[$boy]>>''s apartment, you freeze as you enter seeing a woman standing there, clearly not expecting someone else to arrive here today.'
  665. 'woman: "who are you?"'
  666. 'Sveta: "Uhm, I''m <<$pcs_nickname>>, I''m here to see <<$npc_firstname[$boy]>>.'
  667. 'The woman looks at you questiongly, wondering why you''re here and how you got a key to the apartment. looking at her face you see she it''s dawning on here why you''re here.'
  668. '"oh fuck" you think inwardly realizing this is either another one of <<$npc_firstname[$boy]>> fuckbuddies who didn''t know he was fucking other girls or this is a girlfriend.'
  669. '"why?" she says with a hint of poison to her words'
  670. 'Sveta: "ehhh, I''m just here to..."'
  671. end
  672. if $ARGS[0] = 'undress':
  673. cla & *clr
  674. gs 'sex_ev_start', 'undress_function'
  675. gs 'arousal', 'foreplay', 2
  676. gs 'arousal', 'foreplay_give', -2
  677. gs'stat'
  678. '<center><video autoplay loop src="images/shared/sex/misc/undress1.mp4"></video></center>'
  679. !! initiative call
  680. if $sex_ev['loc'] = 'house_party':
  681. if npc_humor[$boy] = 2 or $npc_fidelity[$boy] = 'cheater':
  682. 'You stumble into an empty room with <<$npc_firstname[$boy]>>, barely getting through the door before clothes start getting discarded. Before you can fully get your <<$sex_ev[''top_noun'']>> off, rough hands slide over your skin.'
  683. '"Girls like you all want the same thing," he grins as he tears it off and pins you to the wall. His hands seem to find every inch of your bare skin. By the time you''re at the bed, there''s a trail of clothing across the floor.'
  684. elseif npc_humor[$boy] = 1:
  685. 'You stumble into an empty room with <<$npc_firstname[$boy]>>, barely getting through the door before clothes start getting discarded. His eyes light up as your breasts are exposed and he openly leers at them.'
  686. '"Fuck..." The way <<$npc_firstname[$boy]>> stares at your boobs, he looks like a boy on Christmas day. He suddenly remembers he needs to get undressed as well and scrambles to take off his pants. His eyes never leave your body as you lead him toward the bed.'
  687. elseif npc_humor[$boy] = 3:
  688. 'You stumble into an empty room with <<$npc_firstname[$boy]>>, barely getting through the door before clothes start getting discarded. Before you can fully get your <<$sex_ev[''top_noun'']>> off, warm hands slide stop you.'
  689. '"Hold up your arms," he orders as he expertly pulls it over your shoulders. His slightly labored breath makes you want to rush but he takes his time. By the time you''re make the bed, you are naked and panting.'
  690. else
  691. 'You tear each other''s clothes off, leaving a trail of discarded fabrics.'
  692. end
  693. else
  694. if npc_humor[$boy] = 2 or $npc_fidelity[$boy] = 'cheater':
  695. 'The moment you''re through the door, the both of you begin discarding clothes in a hurry. Before you can fully get your <<$sex_ev[''top_noun'']>> off, rough hands slide over your skin.'
  696. '"Girls like you all want the same thing," he says as he rips it off and pins you to the wall. His hands seem to find every inch of your bare skin. By the time you''re at the bed, there''s a trail of clothing across the floor.'
  697. elseif npc_humor[$boy] = 1:
  698. '<<$npc_firstname[$boy]>> can''t keep his eyes off you as you lead him.'
  699. '"Fuck," he groans as you start to undress once you''re inside the door. His eyes light up as your breasts are exposed and he openly leers at them. He suddenly remembers he needs to get undressed as well and scrambles to take off his pants. His eyes never leave your body as you lead him toward the bed.'
  700. elseif npc_humor[$boy] = 3:
  701. 'The moment you''re through the door, the both of you begin discarding clothes in a hurry. Before you can fully get your <<$sex_ev[''top_noun'']>> off, warm hands slide stop you.'
  702. '"Hold up your arms," he orders as he expertly pulls it over your shoulders. His slightly labored breath makes you want to rush but he takes his time. By the time you''re make the bed, you are naked and panting.'
  703. else
  704. 'You tear each other''s clothes off, leaving a trail of discarded fabrics.'
  705. end
  706. end
  707. if $sex_ev['loc'] ! 'pc_home' or $home['current'] ! 'parents_home':
  708. gs 'sex_ev_foreplay', 'bed_start'
  709. else
  710. act'Go to your bed':gs 'sex_ev_foreplay', 'bed_start'
  711. act'Go to Anya''s bed':$sex_ev['bed_choice'] = 'anya_bed' & sisterQW['sex_bed_count'] += 1 & sisterQW['sex_bed'] = daystart & gs 'sex_ev_foreplay', 'bed_start'
  712. end
  713. end
  714. if $ARGS[0] = 'undress_function':
  715. if sex_ev['undressed_check'] ! 1:
  716. sex_ev['undressed_check'] = 1
  717. $lastwornclothingtype['sex_ev'] = $clothingworntype
  718. lastwornclothingnumber['sex_ev'] = clothingwornnumber
  719. $lastwornpantytype['sex_ev'] = $pantyworntype
  720. lastwornpantynumber['sex_ev'] = pantywornnumber
  721. $lastwornbratype['sex_ev'] = $braworntype
  722. lastwornbranumber['sex_ev'] = brawornnumber
  723. if CloDress = 1:
  724. sex_ev['CloDress'] = 1
  725. $sex_ev['top_noun'] = 'dress'
  726. else
  727. $sex_ev['top_noun'] = 'top'
  728. end
  729. if PCloStyle2 = 4: npc_know_schoolgirl[$boy] = 1
  730. if $clothingworntype ! 'nude':gs 'clothing', 'strip'
  731. if $braworntype ! 'none':gs 'bras', 'remove'
  732. if $pantyworntype ! 'none':gs 'panties', 'remove'
  733. end
  734. end
  735. if $ARGS[0] = 'pre_reaction':
  736. if $npc_dick_desc[$boy] = 'tiny' or $npc_dick_desc[$boy] = 'short':
  737. '<<$npc_firstname[$boy]>>''s pants drop, revealing... what the fuck? Is that a micropenis?'
  738. 'It''s basically the same size as your little finger.'
  739. elseif $npc_dick_desc[$boy] = 'chode':
  740. '<<$npc_firstname[$boy]>> pumps his short cock in and out of you slowly, focusing more on technique than speed. Soft squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But the added lubrication is welcome and his chode slips in and out of you with ease.'
  741. elseif $npc_dick_desc[$boy] = 'skinny':
  742. '<<$npc_firstname[$boy]>> pumps his skinny dick in and out of you slowly, focusing more on technique than speed. Soft squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But the added lubrication is welcome and his slim cock slips in and out of you with ease.'
  743. elseif $npc_dick_desc[$boy] = 'normal':
  744. '<<$npc_firstname[$boy]>> pumps his dick in and out of you slowly, focusing more on technique than speed. Soft squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But the added lubrication is welcome and his cock slips in and out of you with ease.'
  745. elseif $npc_dick_desc[$boy] = 'thick':
  746. '<<$npc_firstname[$boy]>> pumps his dick in and out of you slowly, focusing more on technique than speed. Soft squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But the added lubrication is welcome and his thick cock slips in and out of you with ease.'
  747. elseif $npc_dick_desc[$boy] = 'long':
  748. '<<$npc_firstname[$boy]>> pumps his dick in and out of you slowly, focusing more on technique than speed. Soft squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But his dick is so long that it barely fits inside you, so the added lubrication is more than welcome.'
  749. elseif $npc_dick_desc[$boy] = 'huge':
  750. '<<$npc_firstname[$boy]>> pumps his dick in and out of you slowly, focusing more on technique than speed. Soft squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But you still gasp with every thrust, his huge cock filling you up with every thrust, so the added lubrication is more than welcome.'
  751. elseif $npc_dick_desc[$boy] = 'enormous':
  752. '<<$npc_firstname[$boy]>> pumps his dick in and out of you slowly, focusing more on technique than speed. Soft squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But you still gasp with every thrust, his huge cock filling you up with every thrust, so the added lubrication is more than welcome.'
  753. elseif $npc_dick_desc[$boy] = 'lengthy':
  754. '<<$npc_firstname[$boy]>> pumps his dick in and out of you slowly, focusing more on technique than speed. Soft squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But his cock is so long that he bumps against your cervix with every thrust, so the added lubrication is more than welcome.'
  755. elseif $npc_dick_desc[$boy] = 'gigantic':
  756. '<<$npc_firstname[$boy]>> pumps his dick in and out of you slowly, focusing more on technique than speed. Loud squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But his gigantic cock is so big that he fills you to the brim with every thrust, so the added lubrication is more than welcome.'
  757. elseif $npc_dick_desc[$boy] = 'monster':
  758. '<<$npc_firstname[$boy]>> pumps his dick in and out of you slowly, focusing more on technique than speed. Loud squelching comes from between your legs, a little wetter sounding than usual, probably on account of your period. But his monstrous cock is so big that he nearly splits you in half with every thrust, so the added lubrication is more than welcome.'
  759. end
  760. end
  761. if $ARGS[0] = 'bed_start':
  762. !! $sex_ev['bed_room']
  763. if rand(0,1) = 1:
  764. !! he wins initiative
  765. if npc_caretaker[$boy] = 1 or npc_pussyeater[$boy] = 1:
  766. gs 'sex_ev_foreplay', 'generous_initiative'
  767. elseif npc_selfish[$boy] = 1:
  768. gs 'sex_ev_foreplay', 'selfish_initiative'
  769. else
  770. if rand(0,1) = 1:
  771. gs 'sex_ev_foreplay', 'generous_initiative'
  772. else
  773. gs 'sex_ev_foreplay', 'selfish_initiative'
  774. end
  775. end
  776. else
  777. !! player wins initiative
  778. !! 'You both tear your clothes off, getting naked as fast as possible, you finishing just before he does. You take the extra moment to decide what you want to do...'
  779. gs 'sex_ev_foreplay', 'foreplay_choose'
  780. end
  781. end
  782. if $ARGS[0] = 'mey_home_start':
  783. if $npc_rel_type[$boy] ! '': gs 'sex_ev_start', 'hookup_initiate'
  784. $sex_ev['bed_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/meynolds/guestroom.jpg"></center>'
  785. $sex_ev['bath_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/hotel/hotel.room.best1.jpg"></center>'
  786. $sex_ev['kitchen_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/meynolds/kitchen.jpg"></center>'
  787. $sex_ev['living_room'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/meynolds/hall.jpg"></center>'
  788. $sex_ev['hall_way'] = '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/meynolds/corridor.jpg"></center>'
  789. gs 'vicky_meynold_schedule'
  790. gs 'katja_meynold_schedule'
  791. gs 'sex_ev_start', 'begin'
  792. if (locat['Vicky'] = 9 or locat['Vicky'] = 12 or locat['Vicky'] = 13 or locat['Vicky'] = 15) and (locat['katja'] = 7 or locat['katja'] = 9):
  793. elseif locat['Vicky'] = 9 or locat['Vicky'] = 12 or locat['Vicky'] = 13 or locat['Vicky'] = 15:
  794. elseif locat['katja'] = 7 or locat['katja'] = 9:
  795. end
  796. gs 'sex_ev_start', 'undress'
  797. end
  798. if $ARGS[0] = 'mey_vicky_spot':
  799. cla & *clr
  800. $sex_ev['hall_way']
  801. 'You lead <<$npc_firstname[$boy]>> into the Meynold''s home.'
  802. if locat['Vicky'] = 15:
  803. if rand(1,2) = 1:
  804. 'At that moment, Vicky comes tearing around the corner, her face pressed up against Vanya''s and arms wrapped around his neck as he slams her into the wall with a thud.'
  805. '"<i>Oh!</i> Oh honey~!" she moans as he thrusts his hand under her skirt. "Fuck! I need you inside me now!"'
  806. 'The two of them stagger off down the hall towards Vicky''s room, apparently too caught up in each other to even notice you brought a guy home.'
  807. else
  808. 'At that moment, Vicky comes strolling around the corner, her arm in Vanya''s, giggling at something he said. She spots you out of the corner of her eye and pulls up short in surprise.'
  809. '"Oh! <<$pcs_nickname>>! Is this a boytoy of yours?"'
  810. '"Yeah," you admit, somewhat embarrassed. She just smirks back in turn.'
  811. '"Well I don''t want to get in your way. Make sure you pork her good!" Vicky says, winking at <<$npc_firstname[$boy]>>. "She deserves it. If you don''t I''m gonna make sure I hear all about it later!"'
  812. 'And with that, she and Vayna continue on to some other part of the house.'
  813. end
  814. else
  815. 'blahblah'
  816. end
  817. end
  818. --- sex_ev ---------------------------------