booty_call_condoms.qsrc 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042
  1. # booty_call_condoms
  2. !! npc_bareback means you have agreed with the npc to regularly have sex without a condom
  3. !! booty_call['no_condom'] = 1 - you have agreed not to use condoms today
  4. !! booty_call['out_of_condoms'] = 1 - npc has run out of condoms
  5. !! booty_call['out_of_condoms'] = 2 - npc has run out of condoms, will use players
  6. if $ARGS[0] = 'setup':
  7. if npc_condom_conscious[$boy] = 1:
  8. booty_call['condom_count'] = 100
  9. elseif booty_call['condom_count'] = 0 and booty_call['fuck_count'] = 0 and npc_no_condoms[$boy] ! 1:
  10. if rand(1,5) = 1:
  11. booty_call['condom_count'] = 0
  12. else
  13. booty_call['condom_count'] = rand(1,10)
  14. end
  15. elseif npc_no_condoms[$boy] = 1:
  16. booty_call['condom_count'] = 0
  17. end
  18. booty_call['condom_setup'] = 1
  19. end
  20. if $ARGS[0] = 'check_count':
  21. if booty_call['condoms_used'] >= booty_call['condom_count'] and booty_call['condom_count'] > 0:
  22. booty_call['out_of_condoms'] = 1
  23. end
  24. end
  25. if $ARGS[0] = 'condoms':
  26. if booty_call['condom_setup'] ! 1: gs 'booty_call_condoms', 'setup'
  27. gs 'booty_call_condoms', 'check_count'
  28. booty_call['must_fuck'] = 1
  29. if booty_call['no_condom'] ! 1:
  30. if npc_bareback[$boy] = 1 and booty_call['no_condom'] ! 1 and booty_call['condom'] ! 1:
  31. !! if npc_know_bc[$boy] = 1 and npc_condom_conscious[$boy] ! 2: booty_call['no_condom'] = 1
  32. 'You agreed to stop using condoms with <<$npc_firstname[$boy]>> and he makes no move to get one.'
  33. gs 'booty_call_sex', 'position_choose'
  34. gs 'booty_call_condoms', 'dont_cum_in_me'
  35. gs 'booty_call_condoms', 'pc_safe_day'
  36. gs 'booty_call_condoms', 'pc_dangerous_day'
  37. elseif booty_call['condom'] = 0:
  38. if npc_condom_conscious[$boy] > 0:
  39. gs 'booty_call_condoms', 'condom_conscious_npc'
  40. elseif booty_call['condom_count'] > 0 and rand(0,1) = 1:
  41. gs 'booty_call_condoms', 'npc_condom_use'
  42. else
  43. '<<$npc_firstname[$boy]>> makes no indication that he''s going to put on a condom.'
  44. gs 'booty_call_condoms', 'pc_condom_ask'
  45. gs 'booty_call_condoms', 'pc_condoms'
  46. gs 'booty_call_condoms', 'dont_cum_in_me'
  47. gs 'booty_call_condoms', 'pc_safe_day'
  48. gs 'booty_call_condoms', 'pc_dangerous_day'
  49. end
  50. elseif booty_call['using_pc_condoms'] = 1:
  51. gs 'booty_call_condoms', 'pc_condoms'
  52. elseif booty_call['condom'] = 1:
  53. if booty_call['condoms_used'] >= booty_call['condom_count']:
  54. gs 'booty_call_condoms', 'npc_out_of_condoms'
  55. else
  56. gs 'booty_call_condoms', 'npc_condom_use'
  57. end
  58. end
  59. end
  60. end
  61. if $ARGS[0] = 'pc_condom_use_stats':
  62. booty_call['using_pc_condoms'] = 1
  63. booty_call['condom'] = 1
  64. booty_call['pc_condoms_used'] += 1
  65. booty_call['must_fuck'] = 1
  66. prezik -= 1
  67. end
  68. if $ARGS[0] = 'pc_condoms':
  69. if prezik > 0:
  70. act'Put a condom on him':
  71. gs 'booty_call_condoms', 'pc_condom_use_stats'
  72. cla & *clr
  73. '<center><img <<$set_imgh>> src="images/shared/sex/misc/condom_put.jpg"></center>'
  74. 'You lean over the side of the bed and reach down to your purse. After fishing around for a few moments, you pull out a condom. You tear the packaging open and roll it onto his cock for him.'
  75. '"Gotta practice safe sex," you wink.'
  76. gs 'booty_call_sex', 'position_choose'
  77. end
  78. act'Put a condom on him with your mouth':
  79. cla & *clr
  80. '<center><video autoplay loop src="images/shared/sex/misc/condom_mouth.mp4"></video></center>'
  81. gs 'booty_call_condoms', 'pc_condom_use_stats'
  82. 'You lean over the side of the bed and reach down to your purse. After fishing around for a few moments, you pull out a condom. You tear the packaging open, and place the rubber onto the tip of his penis, kissing it through the rubber. Then, using your fingers, you unroll it smoothly over the length of his cock, your lips following all the way down. You bob your head up and down a few more times to make sure it''s all the way on before glancing up at him.'
  83. '"Gotta practice safe sex," you smile.'
  84. gs 'booty_call_sex', 'position_choose'
  85. end
  86. elseif booty_call['using_pc_condoms'] = 1 and booty_call['pc_out_of_condoms'] ! 1:
  87. booty_call['pc_out_of_condoms'] = 1
  88. cla
  89. if booty_call['out_of_condoms'] = 1:
  90. '"I think that was my last condom..." you say. "I guess that means we''re both out...?"'
  91. '"I guess so," <<$npc_firstname[$boy]>> shrugs.'
  92. gs'booty_call_after', 'no_condom_end'
  93. gs'booty_call_sex', 'no_sex_only'
  94. else
  95. '"I think that was my last condom..." you say.'
  96. gs'booty_call_after', 'no_condom_end'
  97. act'Do you have any?':
  98. cla & *nl
  99. $npc_apt_bedroom
  100. if booty_call['cock_remove'] = 0:
  101. '"But I''m not ready to stop," you grin, flexing your pussy around <<$npc_firstname[$boy]>>''s cock inside you. "Have you got any?"'
  102. else
  103. '"But I''m not ready to stop," you say. "Have you got any?"'
  104. end
  105. if npc_condom_conscious = 1:
  106. '"I always have condoms," <<$npc_firstname[$boy]>> says. "You don''t have to keep buying them if you don''t want to, you know. I order in bulk."'
  107. gs'booty_call_sex', 'reset'
  108. act'If you''re offering':
  109. cla & *nl
  110. '"Well, if you''re offering..." you smirk.'
  111. gs'booty_call_condoms', 'npc_condom_use'
  112. end
  113. act'I might take you up on that':
  114. cla & *nl
  115. '"I just might take you up on that," you smile.'
  116. gs'booty_call_condoms', 'npc_condom_use'
  117. end
  118. act'I want to do my part':
  119. cla & *nl
  120. '"I want to do my part," you smile. "I''m enjoying the sex with you. Only fair that I pay for it too."'
  121. gs'booty_call_condoms', 'npc_condom_use'
  122. end
  123. if karta + money < 2000:
  124. act'Good, money''s tight':
  125. cla & *nl
  126. '"Then I''ll stop buying right away," you grin. "I don''t have a lot of spare cash on hand, so saving on condoms would be great.'
  127. gs'booty_call_condoms', 'npc_condom_use'
  128. end
  129. end
  130. elseif booty_call['condom_count'] > 0 and booty_call['condoms_used'] < booty_call['condom_count']:
  131. '"Yeah, I have some," <<$npc_firstname[$boy]>> says.'
  132. gs'booty_call_sex', 'reset'
  133. gs'booty_call_condoms', 'npc_condom_use'
  134. else
  135. if npc_no_condoms_know[$boy] = 1:
  136. '"Come on," <<$npc_firstname[$boy]>> says, rolling his eyes. "You know I hate using condoms. Lucky you can even talk me into using yours."'
  137. else
  138. '<<$npc_firstname[$boy]>> shakes his head.'
  139. '"I don''t."'
  140. end
  141. gs'booty_call_after', 'no_condom_end'
  142. gs'booty_call_sex', 'no_sex_only'
  143. end
  144. end
  145. end
  146. gs'booty_call_sex', 'no_sex_only'
  147. end
  148. end
  149. if $ARGS[0] = 'pc_condom_ask':
  150. act'Don''t say anything':
  151. cla & *nl
  152. booty_call['no_condom'] = 1
  153. '<<$npc_firstname[$boy]>> takes your silence as consent and begins manuevering into position.'
  154. gs 'booty_call_sex', 'position_choose'
  155. end
  156. act'Ask him to put on a condom':
  157. cla & *nl
  158. '"Could you put on a condom?" you ask.'
  159. !! if npc_no_condoms[$boy] = 1:
  160. !! gs 'booty_call_condoms', 'npc_doesnt_use_condoms'
  161. if rand(1,10) >= 7:
  162. if booty_call['condom_count'] > booty_call['condoms_used']:
  163. '"Come on, do we have to? We don''t need to use a condom."'
  164. gs 'booty_call_condoms', 'no_condom1'
  165. else
  166. '"Don''t have any left. I''m all out."'
  167. gs 'booty_call_condoms', 'no_condom2'
  168. end
  169. else
  170. booty_call['condom'] = 1
  171. booty_call['condoms_used'] += 1
  172. booty_call['must_fuck'] = 1
  173. 'He nods, reaching over to his nightstand and retrieving one, rolling the rubber onto his cock. While he works that out, you consider how you want to do this with him...'
  174. gs 'booty_call_sex', 'position_choose'
  175. end
  176. end
  177. end
  178. if $ARGS[0] = 'pc_skip_the_condom':
  179. act'We could skip the condom':
  180. cla & *clr
  181. $npc_apt_bedroom[$boy]
  182. booty_call['skip_condom'] = 1
  183. booty_call['no_condom'] = 1
  184. booty_call['must_fuck'] = 1
  185. '"I guess we could skip it..." you smile shyly. "Just this once?"'
  186. if booty_call['danger_day'] = 1 and npc_childfree = 1:
  187. '"Seems like a bad idea," <<$npc_firstname[$boy]>> says, shaking his head. "You said it''s dangerous for you today. I don''t want to take the risk."'
  188. act'Disappointed':
  189. cla & *nl
  190. 'You sigh deeply as <<$npc_firstname[$boy]>> already starts to pull away from you.'
  191. gs'booty_call_after', 'after_sex1'
  192. end
  193. act'You''re probably right':
  194. cla & *nl
  195. '"Yeah... You''re probably right," you say ruefully as <<$npc_firstname[$boy]>> already starts to pull away from you.'
  196. gs'booty_call_after', 'after_sex1'
  197. end
  198. gs 'booty_call_sex', 'no_sex_only'
  199. else
  200. '"Just this once," he smiles back.'
  201. gs 'booty_call_sex', 'position_choose'
  202. end
  203. end
  204. end
  205. if $ARGS[0] = 'npc_condom_use_stats':
  206. booty_call['condoms_used'] += 1
  207. booty_call['must_fuck'] = 1
  208. booty_call['condom'] = 1
  209. end
  210. if $ARGS[0] = 'npc_condom_use':
  211. booty_call['must_fuck'] = 1
  212. if booty_call['fuck_count'] > 1 and $booty_call['last_cum'] = 'condom':
  213. '<<$npc_firstname[$boy]>> swaps out his used condom for a new one.'
  214. elseif booty_call['fuck_count'] > 1:
  215. '<<$npc_firstname[$boy]>> reaches for a new condom.'
  216. end
  217. !! gs 'booty_call_sex', 'position_choose'
  218. gs 'booty_call_condoms', 'npc_condom_put_on'
  219. if booty_call['condom'] = 0:
  220. gs 'booty_call_condoms', 'disable_condoms'
  221. gs 'booty_call_condoms', 'temp_disable_condoms'
  222. end
  223. end
  224. if $ARGS[0] = 'npc_condom_put_on':
  225. act'Wait for him':
  226. gs 'booty_call_condoms', 'npc_condom_use_stats'
  227. cla & *clr
  228. '<center><video autoplay loop src="images/shared/sex/misc/wait.mp4"></video></center>'
  229. if booty_call['fuck_count'] = 0:
  230. 'He tears open the packaging and begins rolling the rubber sleeve onto his cock. You wait patiently, watching him, thinking about what position you want to fuck him in.'
  231. else
  232. 'He tears open the packaging and begins rolling the rubber sleeve onto his cock. You wait patiently, watching him, thinking about the next position you want him to fuck you in.'
  233. end
  234. gs 'booty_call_sex', 'position_choose'
  235. end
  236. act'Put it on for him':
  237. gs 'booty_call_condoms', 'npc_condom_use_stats'
  238. cla & *clr
  239. gs 'arousal', 'foreplay_give', -2
  240. gs 'stat'
  241. '<center><img <<$set_imgh>> src="images/shared/sex/misc/condom_put.jpg"></center>'
  242. '<<$npc_firstname[$boy]>> tears open the packaging when you swiftly reach over and pluck the condom out of the wrapper.'
  243. '"Let me take care of this for you," you say with a sexy smile. You gently roll the rubber sleeve down his shaft, squeezing just hard enough to make him twitch under your touch.'
  244. gs 'booty_call_sex', 'position_choose'
  245. end
  246. act'Put it on with your mouth':
  247. gs 'booty_call_condoms', 'npc_condom_use_stats'
  248. cla & *clr
  249. '<center><video autoplay loop src="images/shared/sex/misc/condom_mouth.mp4"></video></center>'
  250. '<<$npc_firstname[$boy]>> tears open the packaging when you swiftly reach over and pluck the condom out of the wrapper.'
  251. '"Let me take care of this for you," you say with a sexy smile. Placing it on the tip of his cock, you lean over and put your lips over both. Then, using both hands, you roll the sleeve down his shaft, following with your head, lips pressed tight against the rubber. Even through the rubber, you can feel the heat of his member against your tongue.'
  252. 'You bob your head up and down a few times for good measure before coming up and flashing a grin.'
  253. gs 'booty_call_sex', 'position_choose'
  254. end
  255. end
  256. if $ARGS[0] = 'condom_conscious_npc':
  257. if booty_call['fuck_count'] = 0:
  258. '<<$npc_firstname[$boy]>> immediately reaches for a condom.'
  259. elseif booty_call['fuck_count'] > 0:
  260. '<<$npc_firstname[$boy]>> reaches for another condom.'
  261. end
  262. gs 'booty_call_condoms', 'npc_condom_use'
  263. end
  264. if $ARGS[0] = 'npc_out_of_condoms':
  265. cla & *clr
  266. $npc_apt_bedroom[$boy]
  267. if booty_call['fuck_count'] > 5:
  268. '"I think that was my last condom," <<$npc_firstname[$boy]>> pants.'
  269. else
  270. '"I think that was my last condom," <<$npc_firstname[$boy]>> says.'
  271. end
  272. gs 'booty_call_after', 'no_condom_end'
  273. gs 'booty_call_condoms', 'pc_skip_the_condom'
  274. if prezik > 0:
  275. act'Use one of your condoms':
  276. booty_call['using_pc_condoms'] = 1
  277. gs 'booty_call_condoms', 'pc_condom_use'
  278. cla & *clr
  279. '<center><img <<$set_imgh>> src="images/shared/sex/misc/condom_put.jpg"></center>'
  280. if prezik > 1:
  281. '"That''s okay, I''ve got some."'
  282. elseif prezik = 1:
  283. '"That''s okay, I''ve got one."'
  284. end
  285. 'You reach into your bag and pull out a condom, rolling it onto his cock.'
  286. gs 'booty_call_sex', 'position_choose'
  287. end
  288. act'Use one of your condoms (mouth)':
  289. booty_call['using_pc_condoms'] = 1
  290. gs 'booty_call_condoms', 'pc_condom_use'
  291. cla & *clr
  292. '<center><video autoplay loop src="images/shared/sex/misc/condom_mouth.mp4"></video></center>'
  293. '"That''s okay, I''ve got some."'
  294. 'You reach into your bag and pull out a condom, rolling it onto his cock with your mouth.'
  295. gs 'booty_call_sex', 'position_choose'
  296. end
  297. end
  298. end
  299. if $ARGS[0] = 'npc_doesnt_use_condoms':
  300. !! boy says he doesn''t use condoms
  301. if npc_no_condoms_know[$boy] = 1:
  302. '"You know I don''t use that shit," <<$npc_firstname[$boy]>> frowns. "It''s bareback or nothing."'
  303. else
  304. end
  305. end
  306. if $ARGS[0] = 'npc_promise_wont_creampie':
  307. act'We <i>need</i> a condom':
  308. cla & *nl
  309. '"No," you say adamantly. "We <i>need</i> a condom. I''m not fucking you without one."'
  310. '"Ugh fine..." he sighs. "But I don''t have any. Do you?"'
  311. if prezik = 0:
  312. '"No..." you say, a little embarrassed. "I thought you would."'
  313. if npc_no_condoms_know[$boy] = 1:
  314. '"I can''t imagine why you''d think that," he replies dryly. "You know I don''t use them."'
  315. else
  316. npc_no_condoms_know[$boy] = 1
  317. '"Well I don''t," he replies dryly. "I don''t use them."'
  318. end
  319. gs'booty_call_after', 'no_condom_end'
  320. gs'booty_call_sex', 'no_sex_only'
  321. gs'booty_call_condoms', 'pc_skip_the_condom'
  322. else
  323. gs 'booty_call_condoms', 'pc_condoms'
  324. end
  325. end
  326. act'I guess I trust you':
  327. cla & *nl
  328. booty_call['no_condom'] = 1
  329. booty_call['promise_no_creampie'] = 1
  330. npc_rel[$boy] += 1
  331. $npc_apt_bedroom[$boy]
  332. 'You hesitate for a moment before relenting.'
  333. '"I guess it''s okay... I trust you," you smile as <<$npc_firstname[$boy]>> eagerly forgoes the condom.'
  334. gs 'booty_call_sex', 'position_choose'
  335. end
  336. act'I guess I trust you':
  337. cla & *nl
  338. booty_call['no_condom'] = 1
  339. booty_call['promise_no_creampie'] = 1
  340. npc_rel[$boy] += 1
  341. $npc_apt_bedroom[$boy]
  342. 'You hesitate for a moment before relenting.'
  343. '"If you promise..." you say reluctantly as <<$npc_firstname[$boy]>> eagerly forgoes the condom.'
  344. gs 'booty_call_sex', 'position_choose'
  345. end
  346. gs'booty_call_condoms', 'pc_skip_the_condom'
  347. end
  348. if $ARGS[0] = 'condom_why2':
  349. !! player says they don''t want to use a condom
  350. act'We don''t need a condom (feel better)':
  351. cla & *nl
  352. '"Come on," you say, grabbing his arm. "Let''s skip the condom. It''ll feel better without one."'
  353. if npc_condom_conscious[$boy] = 2 or (npc_condom_conscious[$boy] = 1 and npc_childfree[$boy] = 1):
  354. '"Don''t want to risk it," <<$npc_firstname[$boy]>> says, shaking his head and opens the condom anyways, rolling it onto his cock.'
  355. else
  356. if rand(npc_willpwr[$boy],100) < pcs_persuas:
  357. booty_call['no_condom'] = 1
  358. booty_call['condom'] = 0
  359. '<<$npc_firstname[$boy]>> stops, looking back at you for a moment before smiling.'
  360. '"Okay," he says and leaves the rubber where it is.'
  361. else
  362. '"Don''t want to risk it," <<$npc_firstname[$boy]>> says, shaking his head and opens the condom anyways, rolling it onto his cock.'
  363. end
  364. end
  365. gs 'booty_call_sex', 'position_choose'
  366. end
  367. if birth_control['think_safe'] = 1:
  368. if tabletkishot > 0:
  369. act'We don''t need a condom (on the shot)':
  370. npc_know_bc[$boy] = 1
  371. npc_know_not_bc[$boy] = 0
  372. booty_call['must_fuck'] = 1
  373. cla & *nl
  374. '"Hey," you smile, grabbing his arm. "We don''t need condoms. I''m on the shot."'
  375. if npc_condom_conscious[$boy] = 2:
  376. booty_call['npc_condom_insist'] = 1
  377. '"I want to use one anyways," <<$npc_firstname[$boy]>> says, shaking his head and reaches back for the condom. "Better to be safe."'
  378. 'Your jaw drops.'
  379. *nl
  380. '<i>A free pass to skip a condom and he doesn''t take it? What''s with him??</i>'
  381. else
  382. booty_call['no_condom'] = 1
  383. '<<$npc_firstname[$boy]>> stops reaching and turns to meet your gaze, eyes filled with desire, and your smile widens into a full blown grin.'
  384. end
  385. gs 'booty_call_sex', 'position_choose'
  386. end
  387. elseif pillcon2 > 0:
  388. act'We don''t need a condom (on the pill)':
  389. npc_know_bc[$boy] = 1
  390. npc_know_not_bc[$boy] = 0
  391. booty_call['must_fuck'] = 1
  392. cla & *nl
  393. '"Hey," you smile, grabbing his arm. "We don''t need condoms. I''m on the pill."'
  394. if npc_condom_conscious[$boy] = 2:
  395. booty_call['npc_condom_insist'] = 1
  396. '"I want to use one anyways," <<$npc_firstname[$boy]>> says, shaking his head and reaches back for the condom. "Better to be safe."'
  397. 'Your jaw drops.'
  398. *nl
  399. '<i>A free pass to skip a condom and he doesn''t take it? What''s with him??</i>'
  400. else
  401. booty_call['no_condom'] = 1
  402. '<<$npc_firstname[$boy]>> stops reaching and turns to meet your gaze, eyes filled with desire, and your smile widens into a full blown grin.'
  403. end
  404. gs 'booty_call_sex', 'position_choose'
  405. end
  406. end
  407. else
  408. act'Lie about birth control':
  409. booty_call['must_fuck'] = 1
  410. npc_know_bc[$boy] = 1
  411. npc_know_not_bc[$boy] = 0
  412. cla & *nl
  413. '"Hey," you smile, grabbing his arm. "We don''t need condoms. I''m on birth control."'
  414. if npc_condom_conscious[$boy] = 2:
  415. '"I want to use one anyways," <<$npc_firstname[$boy]>> says, shaking his head and reaches back for the condom. "Better to be safe."'
  416. 'Your jaw drops.'
  417. *nl
  418. '<i>Son of a bitch! Why is this guy so fucking careful?!</i>'
  419. else
  420. booty_call['no_condom'] = 1
  421. 'Upon hearing your barefaced lie, <<$npc_firstname[$boy]>> stops reaching and turns to meet your gaze, eyes filled with desire. Your smile widens into a full blown grin.'
  422. end
  423. gs 'booty_call_sex', 'position_choose'
  424. end
  425. end
  426. end
  427. if $ARGS[0] = 'no_condom1':
  428. !! he says he doesnt want to use a condom
  429. act'No way':
  430. cla & *clr
  431. $npc_apt_bedroom[$boy]
  432. if npc_condom_rule[$boy] = 1:
  433. '"You know my rule," you say sternly. "We''re not fucking without one!"'
  434. elseif stat['dangerous_day'] = 1 and birth_control['think_safe'] ! 1:
  435. '"I''m ovulating right now!" you say sternly. "I could get pregnant!'
  436. else
  437. '"We''re not fucking without one," you say sternly.'
  438. end
  439. if stat['dangerous_day'] = 1 and birth_control['think_safe'] ! 1 and npc_childfree[$boy] > 0:
  440. booty_call['condom'] = 1
  441. '"What the fuck! Why didn''t you say so!" he says, immediately reaching for a condom.'
  442. gs 'booty_call_condoms', 'npc_condom_use'
  443. elseif rand(1,10) < 8:
  444. booty_call['condom'] = 1
  445. '"Ugh, fine."'
  446. 'He reaches for a condom.'
  447. gs 'booty_call_condoms', 'npc_condom_use'
  448. else
  449. booty_call['dont_need_condom'] = 1
  450. '"Come on," he complains. "It''ll be fine. Let''s skip it. Just this once."'
  451. act'Not a big deal?!':
  452. cla & *clr
  453. $npc_apt_bedroom[$boy]
  454. if npc_condom_rule[$boy] = 1:
  455. '"Not a big deal?! We said- You know what? <i>Fuck</i> you!"'
  456. else
  457. '"Not a big deal?! You don''t have any idea how dangerous it is for m- You know what? <i>Fuck</i> you!"'
  458. end
  459. '"I''m trying to but you won''t let me!"'
  460. !!if booty_call['rape_chance'] > 0:
  461. !!put in chance he rapes you
  462. '<<$npc_firstname[$boy]>> continues to complain at you while you grab all of your belongings and rush your way out the door, slamming it behind you.'
  463. *nl
  464. 'Just because he''s your fuckbuddy doesn''t mean he can take advantage of you!'
  465. act'Leave':gt 'booty_call_after', 'exit'
  466. end
  467. gs'booty_call_condoms', 'pc_skip_the_condom'
  468. act'Just don''t come inside me':
  469. booty_call['dont_need_condom'] = 1
  470. booty_call['promise_no_creampie'] = 1
  471. booty_call['must_fuck'] = 1
  472. cla & *nl
  473. '"Well... Alright..." you say heistantly. "But don''t you dare come inside me, okay?"'
  474. gs 'booty_call_sex', 'position_choose'
  475. end
  476. end
  477. end
  478. gs'booty_call_condoms', 'pc_skip_the_condom'
  479. act'Just don''t come inside me':
  480. booty_call['promise_no_creampie'] = 1
  481. booty_call['must_fuck'] = 1
  482. cla & *nl
  483. '"Well... Alright..." you say hesitantly. "But don''t you dare come inside me, okay?"'
  484. gs 'booty_call_sex', 'position_choose'
  485. end
  486. end
  487. if $ARGS[0] = 'no_condom2':
  488. !! he says he has no condoms
  489. act'Seriously?':
  490. cla & *clr
  491. $npc_apt_bedroom[$boy]
  492. if npc_condom_rule[$boy] = 1:
  493. '"Are you serious?" you ask exhasperatedly. "You know my rule! We need a condom!"'
  494. else
  495. '"Are you serious?" you ask exhasperatedly. "We''re not fucking without one!"'
  496. end
  497. if rand(1,10) < 8:
  498. '"Do you have some?" he asks.'
  499. gs 'booty_call_condoms', 'no_condom2.1'
  500. else
  501. booty_call['dont_need_condom'] = 1
  502. '"Come on," he says. "It''ll be fine. Let''s skip it. Just this once."'
  503. act'Not a big deal?!':
  504. '"Not a big deal??? You don''t have any idea how dangerous it is for m- You know what? <i>Fuck</i> you!"'
  505. '"I''m trying to but you won''t let me!"'
  506. !!if booty_call['rape_chance'] > 0:
  507. !!put in chance he rapes you
  508. '<<$npc_firstname[$boy]>> continues to complain at you while you grab all of your belongings and rush your way out the door, slamming it behind you.'
  509. *nl
  510. 'The nerve of some people.'
  511. act'Leave':gt 'booty_call_after', 'exit'
  512. end
  513. end
  514. gs'booty_call_condoms', 'pc_skip_the_condom'
  515. act'Just don''t come inside me':
  516. booty_call['promise_no_creampie'] = 1
  517. booty_call['must_fuck'] = 1
  518. cla & *nl
  519. '"Well... Alright..." you say heistantly. "But don''t you dare come inside me, okay?"'
  520. gs 'booty_call_sex', 'position_choose'
  521. end
  522. end
  523. gs 'booty_call_condoms', 'no_condom2.1'
  524. act'How many girls are you fucking? (tease)':
  525. cla & *nl
  526. '"Damn! How many of these things do you go through?" you laugh, giving him a look. "Are you fucking 20 girls a day?"'
  527. '"Hey, when you''re as good as I am," he says, a smug grin on his face. "Do you have any?"'
  528. gs 'booty_call_condoms', 'no_condom2.1'
  529. end
  530. end
  531. if $ARGS[0] = 'no_condom2.1':
  532. if prezik > 0:
  533. act'I''ve got some':
  534. cla & *clr
  535. prezik -= 1
  536. booty_call['condom'] = 1
  537. booty_call['must_fuck'] = 1
  538. '<center><img <<$set_imgh>> src="images/shared/sex/misc/condom_put.jpg"></center>'
  539. '"I''ve got some right here," you say, pulling a rubber from your bag and tearing it open.'
  540. 'You smile at <<$npc_firstname[$boy]>> as you roll it onto his cock for him.'
  541. gs 'booty_call_sex', 'position_choose'
  542. end
  543. else
  544. act'Don''t have any condoms':
  545. cla & *nl
  546. '"No..." you say reluctantly. "I thought you would..."'
  547. if npc_no_condoms[$boy] = 1:
  548. if npc_no_condoms_know[$boy] = 1:
  549. '"I can''t imagine why you''d think that," he replies dryly. "You know I don''t use them."'
  550. else
  551. npc_no_condoms_know[$boy] = 1
  552. '"Well I don''t," he replies dryly. "I don''t use them."'
  553. end
  554. else
  555. '"So... what should we do?"'
  556. end
  557. gs'booty_call_after', 'no_condom_end'
  558. gs'booty_call_sex', 'no_sex_only'
  559. end
  560. end
  561. gs'booty_call_condoms', 'pc_skip_the_condom'
  562. act'Just don''t come inside me (trusting)':
  563. booty_call['promise_no_creampie'] = 1
  564. booty_call['must_fuck'] = 1
  565. cla & *nl
  566. '"Just don''t come inside me," you grin eagerly.'
  567. gs 'booty_call_sex', 'position_choose'
  568. end
  569. act'Just don''t come inside me (nervous)':
  570. booty_call['promise_no_creampie'] = 1
  571. booty_call['must_fuck'] = 1
  572. cla & *nl
  573. '"Well..." you say hesitantly. "Just don''t come inside me, okay?"'
  574. gs 'booty_call_sex', 'position_choose'
  575. end
  576. end
  577. if $ARGS[0] = 'npc_lets_skip_condom':
  578. end
  579. if $ARGS[0] = 'dont_cum_in_me':
  580. if birth_control['think_safe'] = 0 and npc_creampie_okay[$boy] = 0:
  581. act'Don''t come inside me':
  582. cla & *nl
  583. booty_call['promise_no_creampie'] = 1
  584. if birth_control['think_safe'] ! 1 and npc_know_not_bc[$boy] = 1:
  585. '"Don''t forget, I''m not on birth control," you warn him as you get into position. "So you can''t come inside me."'
  586. elseif birth_control['think_safe'] ! 1 and pillcon2 > 0:
  587. npc_know_not_bc[$boy] = 1
  588. npc_know_bc[$boy] = 0
  589. npc_know_bc_not_effective[$boy] = 1
  590. '"Don''t come inside me," you warn him as you get into position. "My birth control hasn''t kicked in yet."'
  591. elseif birth_control['think_safe'] ! 1:
  592. npc_know_not_bc[$boy] = 1
  593. npc_know_bc[$boy] = 0
  594. '"Don''t come inside me," you warn him as you get into position. "I''m not on birth control."'
  595. else
  596. '"Don''t come inside me," you murmur as you get into position.'
  597. end
  598. gs 'booty_call_sex', 'position_choose'
  599. end
  600. end
  601. end
  602. if $ARGS[0] = 'disable_condoms':
  603. if npc_bareback[$boy] = 0 and booty_call['condom'] = 0:
  604. act'We can stop using condoms':
  605. cla & *clr
  606. $npc_apt_bedroom[$boy]
  607. '"Hey," you smile. "We don''t need to use condoms anymore.'
  608. act'I trust you':
  609. cla & *clr
  610. $npc_apt_bedroom[$boy]
  611. '"Hey," you smile. "We don''t need to use condoms anymore. I trust you."'
  612. gs 'booty_call_condoms', 'npc_no_condom_react'
  613. end
  614. act'It''ll feel better':
  615. cla & *clr
  616. $npc_apt_bedroom[$boy]
  617. '"Hey," you smile. "We don''t need to use condoms anymore. I want even a millimeter of separation between us. I want to feel you inside me."'
  618. gs 'booty_call_condoms', 'npc_no_condom_react'
  619. end
  620. if birth_control['think_safe'] = 1 and npc_know_bc[$boy] = 0:
  621. if tabletkishot > 0:
  622. act'On the shot':
  623. npc_know_bc[$boy] = 1
  624. npc_know_not_bc[$boy] = 0
  625. booty_call['must_fuck'] = 1
  626. cla & *clr
  627. $npc_apt_bedroom[$boy]
  628. '"Hey," you smile. "We don''t need to use condoms anymore. I''m on the shot."'
  629. gs 'booty_call_condoms', 'npc_no_condom_react'
  630. end
  631. elseif pillcon2 > 0:
  632. act'On the pill':
  633. npc_know_bc[$boy] = 1
  634. npc_know_not_bc[$boy] = 0
  635. booty_call['must_fuck'] = 1
  636. cla & *clr
  637. $npc_apt_bedroom[$boy]
  638. if npc_know_bc_not_effective[$boy] = 1:
  639. '"Hey," you smile. "We don''t need to use condoms anymore. My birth control has finally kicked in."'
  640. else
  641. '"Hey," you smile. "We don''t need to use condoms anymore. I''m on the pill."'
  642. end
  643. npc_know_not_bc[$boy] = 0
  644. npc_know_bc[$boy] = 1
  645. npc_know_bc_not_effective[$boy] = 0
  646. gs 'booty_call_condoms', 'npc_no_condom_react'
  647. end
  648. end
  649. elseif npc_know_bc[$boy] = 0:
  650. act'Lie about birth control':
  651. booty_call['must_fuck'] = 1
  652. npc_know_bc[$boy] = 1
  653. npc_know_not_bc[$boy] = 0
  654. cla & *clr
  655. $npc_apt_bedroom[$boy]
  656. '"Hey," you smile. "We don''t need to use condoms anymore. I''m on birth control."'
  657. if npc_condom_conscious[$boy] = 2:
  658. '"I want to use one anyways," <<$npc_firstname[$boy]>> says, shaking his head and reaches back for the condom. "Better to be safe."'
  659. 'Your jaw drops.'
  660. *nl
  661. '<i>Son of a bitch! Why is this guy so fucking careful?!</i>'
  662. gs 'booty_call_condoms', 'npc_condom_use'
  663. else
  664. booty_call['no_condom'] = 1
  665. npc_bareback[$boy] = 1
  666. 'Upon hearing your barefaced lie, <<$npc_firstname[$boy]>> stares back into your eyes filled with desire and your smile widens into a full blown grin.'
  667. end
  668. gs 'booty_call_sex', 'position_choose'
  669. end
  670. end
  671. end
  672. end
  673. end
  674. if $ARGS[0] = 'disable_condoms2':
  675. end
  676. if $ARGS[0] = 'temp_disable_condoms':
  677. if npc_bareback[$boy] = 0 and booty_call['condom'] = 0:
  678. act'Let''s skip the condom today':
  679. cla & *clr
  680. $npc_apt_bedroom[$boy]
  681. '"Let''s skip the condom today," you smile.'
  682. act'I trust you':
  683. cla & *clr
  684. $npc_apt_bedroom[$boy]
  685. '"Let''s skip the condom today," you smile. "I trust you."'
  686. gs 'booty_call_condoms', 'npc_temp_no_condom_react'
  687. end
  688. act'It''ll feel better':
  689. cla & *clr
  690. $npc_apt_bedroom[$boy]
  691. '"Let''s skip the condom today," you smile. "It''ll feel better without it."'
  692. gs 'booty_call_condoms', 'npc_temp_no_condom_react'
  693. end
  694. if mesec > 0:
  695. act'I''m on my period':
  696. cla & *clr
  697. $npc_apt_bedroom[$boy]
  698. '"Let''s skip the condom today," you smile. "I don''t think I can get pregnant on my period."'
  699. gs 'booty_call_condoms', 'npc_temp_no_condom_react'
  700. end
  701. elseif stat['safe_day'] = 1:
  702. act'It''s a safe day':
  703. booty_call['safe_day'] = 1
  704. cla & *clr
  705. $npc_apt_bedroom[$boy]
  706. '"Let''s skip the condom," you smile. "It''s a safe day for me. I won''t get pregnant."'
  707. gs 'booty_call_condoms', 'npc_temp_no_condom_react'
  708. end
  709. elseif stat['probably_safe_day'] = 1:
  710. act'It''s probably safe day':
  711. booty_call['probably_safe_day'] = 1
  712. cla & *clr
  713. $npc_apt_bedroom[$boy]
  714. '"Let''s skip the condom," you smile. "It should be a safe day for me. I won''t get pregnant."'
  715. !! if npc_childfree[$boy] = 1:
  716. !! gs 'booty_call_condoms', 'npc_hesitate_childfree'
  717. !! else
  718. *nl
  719. '<i>Probably...</i> you think quietly to yourself.'
  720. gs 'booty_call_condoms', 'npc_temp_no_condom_react'
  721. !! end
  722. end
  723. end
  724. end
  725. end
  726. end
  727. if $ARGS[0] = 'npc_no_condom_react':
  728. if npc_condom_conscious[$boy] = 2 or (npc_condom_conscious[$boy] = 1 and (rand(npc_willpwr[$boy],100) - npc_rel[$boy]) < pcs_persuas):
  729. booty_call['condom'] = 1
  730. booty_call['npc_condom_insist'] = 1
  731. '"I want to use one anyways," <<$npc_firstname[$boy]>> says, shaking his head and reaching back for the condom. "Better to be safe."'
  732. 'Your jaw drops.'
  733. *nl
  734. '<i>A free pass to go bareback forever and he doesn''t take it? What''s with him??</i>'
  735. else
  736. booty_call['no_condom'] = 1
  737. npc_bareback[$boy] = 1
  738. '"This is going to feel so good," <<$npc_firstname[$boy]>> says and your smile widens into a full blown grin.'
  739. end
  740. gs 'booty_call_sex', 'position_choose'
  741. end
  742. if $ARGS[0] = 'npc_temp_no_condom_react':
  743. if npc_condom_conscious[$boy] = 2 or (npc_condom_conscious[$boy] = 1 and (rand(npc_willpwr[$boy],100) - npc_rel[$boy]) < pcs_persuas):
  744. booty_call['condom'] = 1
  745. booty_call['npc_condom_insist'] = 1
  746. '"I want to use one anyways," <<$npc_firstname[$boy]>> says, shaking his head and reaching back for the condom. "Better to be safe."'
  747. 'Your jaw drops.'
  748. *nl
  749. '<i>A free pass to go bareback and he doesn''t take it? What''s with him??</i>'
  750. else
  751. booty_call['no_condom'] = 1
  752. '"This is going to feel so good," <<$npc_firstname[$boy]>> says and your smile widens into a full blown grin.'
  753. end
  754. gs 'booty_call_sex', 'position_choose'
  755. end
  756. if $ARGS[0] = 'npc_hesitate_childfree':
  757. '<<$npc_firstname[$boy]>> pauses.'
  758. '"What do you mean ''should'' be?" he asks.'
  759. end
  760. if $ARGS[0] = 'pc_dangerous_day':
  761. if stat['dangerous_day'] = 1 and birth_control['think_safe'] ! 1 and succubusflag ! 1 and booty_call['dangerous_day'] = 0 and booty_call['safe_day'] = 0:
  762. act'Today is a dangerous day':
  763. booty_call['danger_day'] = 1
  764. cla & *clr
  765. $npc_apt_bedroom[$boy]
  766. if ovulate > 0:
  767. '"I''m ovulating right now," you warn <<$npc_firstname[$boy]>>. '
  768. else
  769. '"I''m ovulating soon," you warn <<$npc_firstname[$boy]>>. '
  770. end
  771. act'You can''t come inside me':
  772. cla & *clr
  773. $npc_apt_bedroom[$boy]
  774. if ovulate > 0:
  775. '"I''m ovulating right now," you warn <<$npc_firstname[$boy]>>. "You can''t come inside me, I''ll get pregnant."'
  776. else
  777. '"I''m ovulating soon," you warn <<$npc_firstname[$boy]>>. "If you come inside me now, I''ll get pregnant."'
  778. end
  779. if npc_condom_conscious[$boy] = 1:
  780. '"Maybe we should just use a condom," he says, eyeing his stash of rubbers.'
  781. act'Good idea':
  782. cla & *nl
  783. '"Good idea," you nod.'
  784. act'Ask to use his':
  785. cla & *clr
  786. $npc_apt_bedroom[$boy]
  787. if prezik > 0:
  788. '"Could we use yours?" you ask and he immediately reaches over to grab one.'
  789. else
  790. '"I don''t have any on me. Can we use yours?" you ask and he immediately reaches over to grab one.'
  791. '"You know, you don''t have to buy any if you want," he says. "I buy in bulk so I always have some on hand."'
  792. end
  793. gs 'booty_call_condoms', 'npc_condom_put_on'
  794. end
  795. gs 'booty_call_condoms', 'pc_condoms'
  796. end
  797. act'I trust you':
  798. cla & *clr
  799. npc_rel[$boy] += 1
  800. $npc_apt_bedroom[$boy]
  801. '"No, it''s okay," you say, shaking your head and smiling. "I trust you."'
  802. if npc_childfree[$boy] = 1:
  803. 'He hesitates for a moment before shaking his head back at you.'
  804. '"No, better to be safe." He reaches for a condom anyways and you sigh deeply. "I really don''t want kids," he says, rolling it onto his cock.'
  805. gs 'booty_call_condoms', 'npc_condom_use_stats'
  806. gs 'booty_call_sex', 'position_choose'
  807. else
  808. booty_call['no_condom'] = 1
  809. '"If you say so," he smiles back.'
  810. gs 'booty_call_sex', 'position_choose'
  811. end
  812. end
  813. else
  814. booty_call['no_condom'] = 1
  815. gs 'booty_call_sex', 'position_choose'
  816. end
  817. end
  818. act'We need to use a condom':
  819. cla & *clr
  820. $npc_apt_bedroom[$boy]
  821. if ovulate > 0:
  822. '"I''m ovulating right now," you warn <<$npc_firstname[$boy]>>. "We need to use a condom."'
  823. else
  824. '"I''m ovulating soon," you warn <<$npc_firstname[$boy]>>. "If you come inside me now, I''ll get pregnant. We need to use a condom."'
  825. end
  826. if npc_condom_conscious[$boy] = 1:
  827. '"<<$npc_firstname[$boy]>> nods and immediately reaches for one from his stash.'
  828. gs 'booty_call_condoms', 'npc_condom_put_on'
  829. elseif npc_no_condoms[$boy] = 1 and npc_childfree[$boy] = 1:
  830. '"Ugh fine..." he sighs. "But I don''t have any. We need to use yours."'
  831. if prezik = 0:
  832. '"I don''t have any..." you say reluctantly. "I thought you would."'
  833. if npc_no_condoms_know[$boy] = 1:
  834. '"I can''t imagine why you''d think that," he replies dryly. "You know I don''t use them."'
  835. else
  836. npc_no_condoms_know[$boy] = 1
  837. '"Well I don''t," he replies dryly. "I don''t use them."'
  838. end
  839. gs'booty_call_after', 'no_condom_end'
  840. gs'booty_call_sex', 'no_sex_only'
  841. else
  842. gs 'booty_call_condoms', 'pc_condoms'
  843. end
  844. elseif npc_no_condoms[$boy] = 1:
  845. '"Come on, do we really have to? I promise I won''t come inside."'
  846. gs 'booty_call_condoms', 'npc_promise_wont_creampie'
  847. else
  848. '"Okay," <<$npc_firstname[$boy]>> nods.'
  849. act'Ask to use his':
  850. cla & *clr
  851. $npc_apt_bedroom[$boy]
  852. if prezik > 0:
  853. '"Could we use yours?" you ask and he immediately reaches over to grab one.'
  854. else
  855. '"I don''t have any on me. Can we use yours?" you ask and he immediately reaches over to grab one.'
  856. '"You know, you don''t have to buy any if you want," he says. "I buy in bulk so I always have some on hand."'
  857. end
  858. gs 'booty_call_condoms', 'npc_condom_put_on'
  859. end
  860. gs 'booty_call_condoms', 'pc_condoms'
  861. end
  862. end
  863. end
  864. end
  865. end
  866. if $ARGS[0] = 'pc_safe_day':
  867. if stat['safe_day'] = 1 or stat['probably_safe_day'] = 1 and birth_control['think_safe'] ! 1 and succubusflag ! 1 and booty_call['danger_day'] = 0 and booty_call['safe_day'] = 0 and booty_call['condom'] = 0:
  868. if mesec > 0:
  869. $booty_call['safe_day_act'] = 'I''m on my period'
  870. $booty_call['safe_day_desc1'] = 'I''m on my period'
  871. $booty_call['safe_day_creampie_desc'] = 'So you can come inside me today. I don''t think I can get pregnant on my period'
  872. $booty_call['safe_day_no_condom_desc'] = 'So we don''t need a condom. I don''t think I can get pregnant on my period'
  873. elseif stat['safe_day'] = 1:
  874. $booty_call['safe_day_act'] = 'Today is a safe day'
  875. $booty_call['safe_day_desc1'] = 'It''s a safe day'
  876. $booty_call['safe_day_creampie_desc'] = 'You can come inside me today'
  877. $booty_call['safe_day_no_condom_desc'] = 'We can skip the condom today'
  878. elseif stat['probably_safe_day'] = 1:
  879. $booty_call['safe_day_act'] = 'I''m probably safe today'
  880. $booty_call['safe_day_desc1'] = 'It should be a safe day for me'
  881. $booty_call['safe_day_creampie_desc'] = 'I think it''ll be okay if you want to come inside me'
  882. $booty_call['safe_day_no_condom_desc'] = 'We can skip the condom today'
  883. end
  884. if npc_bareback[$boy] = 1:
  885. act'You can come inside me':
  886. cla & *clr
  887. $npc_apt_bedroom[$boy]
  888. if mesec > 0:
  889. '"You can come inside me today," you smile at <<$npc_firstname[$boy]>>. "I don''t think I can get pregnant on my period."'
  890. else
  891. if stat['safe_day'] = 1:booty_call['safe_day'] = 1
  892. if stat['probably_safe_day'] = 1:booty_call['probably_safe_day'] = 1
  893. '"<<$booty_call[''safe_day_desc1'']>>," you smile at <<$npc_firstname[$boy]>>. "<<$booty_call[''safe_day_creampie_desc'']>>."'
  894. end
  895. !! if stat['probably_safe_day'] = 1 and npc_childfree[$boy] = 1:
  896. !! gs 'booty_call_condoms', 'npc_hesitate_childfree'
  897. if $npc_cum_pref[$boy] = 'creampie':
  898. '"I''m going to pump you full of so many creampies," he whispers, making you giggle.'
  899. else
  900. '"Good to know," he smiles back.'
  901. end
  902. gs 'booty_call_sex', 'position_choose'
  903. end
  904. else
  905. act'<<$booty_call[''safe_day_act'']>>':
  906. booty_call['safe_day'] = 1
  907. booty_call['no_condom'] = 1
  908. cla & *clr
  909. $npc_apt_bedroom[$boy]
  910. '"<<$booty_call[''safe_day_desc1'']>>," you smile at <<$npc_firstname[$boy]>>.'
  911. act'You can come inside me':
  912. cla & *clr
  913. $npc_apt_bedroom[$boy]
  914. '"<<$booty_call[''safe_day_desc1'']>>," you smile at <<$npc_firstname[$boy]>>. "<<$booty_call[''safe_day_creampie_desc'']>>."'
  915. !! if stat['probably_safe_day'] = 1 and npc_childfree[$boy] = 1:
  916. !! gs 'booty_call_condoms', 'npc_hesitate_childfree'
  917. if $npc_cum_pref[$boy] = 'creampie':
  918. '"I''m going to pump you full of so many creampies," he whispers, making you giggle.'
  919. else
  920. '"Good to know," he smiles back.'
  921. end
  922. gs 'booty_call_sex', 'position_choose'
  923. end
  924. if npc_bareback[$boy] ! 1:
  925. act'We can skip the condom':
  926. cla & *clr
  927. $npc_apt_bedroom[$boy]
  928. '"<<$booty_call[''safe_day_desc1'']>>," you smile at <<$npc_firstname[$boy]>>. "<<$booty_call[''safe_day_no_condom_desc'']>>."'
  929. if $npc_cum_pref[$boy] = 'creampie':
  930. '"I''m going to pump you full of so many creampies," he whispers.'
  931. act'I didn''t say that (annoyed)':
  932. cla & *nl
  933. '"I didn''t say you could do that," you frown back.'
  934. gs 'booty_call_sex', 'position_choose'
  935. end
  936. act'I didn''t say that (amused)':
  937. cla & *nl
  938. '"That''s not what I said," you giggle.'
  939. '"It''s what I heard," he grins back.'
  940. gs 'booty_call_sex', 'position_choose'
  941. end
  942. elseif npc_no_condoms[$boy] = 1:
  943. '"Finally," <<$npc_firstname[$boy]>> says. "I''m sick of using that rubber shit."'
  944. gs 'booty_call_sex', 'position_choose'
  945. else
  946. '"Good to know," he smiles back.'
  947. gs 'booty_call_sex', 'position_choose'
  948. end
  949. end
  950. end
  951. if booty_call['virgin'] = 1:
  952. act'I don''t want my first time with a condom':
  953. cla & *clr
  954. $npc_apt_bedroom[$boy]
  955. '"<<$booty_call[''safe_day_desc1'']>>," you smile at <<$npc_firstname[$boy]>>. "Besides, I don''t want my first time to be with a condom."'
  956. if npc_no_condoms[$boy] = 1:
  957. npc_no_condoms_know[$boy] = 1
  958. '"I never use condoms anyways," he grins.'
  959. else
  960. '"It''ll feel better," he nods back.'
  961. end
  962. gs 'booty_call_sex', 'position_choose'
  963. end
  964. end
  965. end
  966. end
  967. end
  968. end
  969. --- booty_call_condoms ---------------------------------