Cum_Manage.qsrc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. # Cum_Manage
  2. !!
  3. !! THIS IS A CORE FILE TO GAME MECHANICS. Please edit CAREFULLY, and leave as many comments as possible!!
  4. !!
  5. !! The comments in this file serve as tutorial to managing cum/sperm during scene writing and game-play. Please read them.
  6. !!
  7. !! spafinloc and cum array naming takes precident over other naming schemes. Always import and export variables by their cum array names
  8. !!
  9. !!------------------------------------------------------------------------------------------------------------
  10. !!
  11. !! Cum Array indices:
  12. !!
  13. !! cumarrnam : Sperm Owner
  14. !! cumarrppt : Sperm Potential Potency (max sperm delivery)
  15. !! cumarrcpt : Sperm Current Potency (current amount of sperm)
  16. !! cumarrdel : Sperm "Delivery" (method of *VAGINAL ONLY* acquisition)
  17. !! cumarrcon : Contraception typ used
  18. !! cumarrage : Sperm age in hours
  19. !! cumarrkno : Did you know/realize who did it?
  20. !! cumarrcnt : Unique identifier of the exact which time the MC has had this sperm incident occur.
  21. !!
  22. !!
  23. !!
  24. !! Spatter Array indices:
  25. !!
  26. !! sparrloc : Location of the sperm, as per cumarrdel
  27. !! sparrnam : Spatter Owner
  28. !! sparrppt : Spatter Potential Potency (Used to increase potency if you don't clean yourself out)
  29. !! sparridt : Did you know/realize who did it?
  30. !! sparrvol : Volume of the spatter. 40 is average.
  31. !! sparrslc : Spread status of the spatter. High volume can spread the contaminant from it's starting place.
  32. !! sparrcnt : Unique identifier of the exact which time the MC has had this spatter incident occur.
  33. !!
  34. !!
  35. !!
  36. !! Values of 'cumarrdel' as defined by the cum_arr:
  37. !!
  38. !! cumarrdel = 0 : 'Vaginal intercourse'
  39. !! cumarrdel = 1 : 'From spatter on labia'
  40. !! cumarrdel = 2 : 'From the anal area'
  41. !! cumarrdel = 3 : 'From sperm on clothing'
  42. !! cumarrdel = 4 : 'From sperm on fingers'
  43. !! cumarrdel = 5 : 'From sperm on wipes'
  44. !! cumarrdel = 6 : 'Unknown'
  45. !!
  46. !!
  47. !!
  48. !! Values of 'cumarrcon' as defined by the cum_arr:
  49. !!
  50. !! cumarrcon = 0: 'No contraception used'
  51. !! cumarrcon = 1: 'You lied about being on the pill'
  52. !! cumarrcon = 2: 'You were on the pill'
  53. !! cumarrcon = 3: 'You used a condom'
  54. !! cumarrcon = 4: 'The condom broke'
  55. !! cumarrcon = 5: 'The condom slipped off inside you'
  56. !! cumarrcon = 6: 'The condom was sabotaged by someone else'
  57. !! cumarrcon = 7: 'You sabotaged the condom'
  58. !! cumarrcon = 8: 'Precum had sperm in it'
  59. !! cumarrcon = 9: 'You believe are sterile'
  60. !!
  61. !!
  62. !!
  63. !! Values of 'cumarrkno' as defined by the cum_arr:
  64. !!
  65. !! cumarrkno = -2 : 'You were unaware there was sperm in you'
  66. !! cumarrkno = -1 : 'You do not think that any sperm has gotten into you'
  67. !! cumarrkno = 0 : 'You know somebody got sperm in you, but you don''t know that person'
  68. !! cumarrkno = 1 : 'You know who got sperm in you'
  69. !!
  70. !!
  71. !!
  72. !! Locations to be defined by 'spafinloc'
  73. !!
  74. !! 0 = 'In your Vagina'
  75. !! 1 = 'On your labia'
  76. !! 2 = 'On your panties over your vagina'
  77. !! 3 = 'In your anus'
  78. !! 4 = 'On your butt'
  79. !! 5 = 'On your panties over your butt'
  80. !! 6 = 'On your clothes in your groin area'
  81. !! 7 = 'On your clothes'
  82. !! 8 = 'On your back'
  83. !! 9 = 'On your legs'
  84. !! 10 = 'On your arms'
  85. !! 11 = 'On your face'
  86. !! 12 = 'Inside your mouth'
  87. !! 13 = 'On your hands'
  88. !! 14 = 'On your stomach'
  89. !! 15 = 'On your breasts'
  90. !! 16 = 'In your hair'
  91. !! 17 = 'In a condom in your vagina'
  92. !!
  93. !!------------------------------------------------------------------------------------------------------------
  94. if $ARGS[0] = '':
  95. !!{ Debug information, comment out in release versions. }
  96. !! '<br><b><font color="red">Cum_Manage</font> called with: spafinloc=<<spafinloc>> cumarrkno=<<cumarrkno>> cummarrcon=<<cumarrcon>> cumarrdel=<<cumarrdel>></b>'
  97. !!{ We count every time somebody cum on or inside the MC. It is used for spatter and cum matching in femcyc}
  98. stat['cum_count'] += 1
  99. !!{ Here we define our important variables.}
  100. dick = npc_dick[$boy]
  101. if sexvolume <= 0: sexvolume = 40
  102. if sexspecpot = 0: sexspecpot = npc_spermpot[$boy]
  103. if sexspecpot = 0: sexspecpot = sexvolume * rand(250, 300)
  104. if sexspecpot < 0: sexspecpot = 0
  105. if vibratorIN = 1 and spafinloc = 0 and replace_vib = 0: vibratorIN = 0
  106. if analplugIN = 1 and spafinloc = 3 and replace_analplug = 0: analplugIN = 0
  107. !!{ Set the cum array temp to the current size of the cum array to add a new entry to the end of file. Then checks to see if you are on the pill. If you are and there is no contraception used, it flags this as a "done with pill" act, which means a pregnancy will be a pill failure.}
  108. cumarrtemp = arrsize('$cumarrnam')
  109. if sexcontra = 0 and pillcon2 > 1000: sexcontra = 2
  110. !!{Check for previous deposit, and if it was by the same guy and precum, it sets cumarrtemp back by one}
  111. !! if $cumarrnam[cumarrtemp-1] = $boy and cumarrkno[cumarrtemp-1] = -1:cumarrtemp -= 1 & sexspecpot = cumarrppt[cumarrtemp]
  112. if cumprecheck = 1:
  113. cumarrkno[cumarrtemp] = -1
  114. dynamic $venerasiak
  115. elseif sexunaware > 0:
  116. cumarrkno[cumarrtemp] = -2
  117. elseif sexpartkno = 1:
  118. cumarrkno[cumarrtemp] = 1
  119. else
  120. cumarrkno[cumarrtemp] = 0
  121. end
  122. !!{ If a condom slipped in the vagina, it will pushed deeper inside the vagina during vaginal sex.}
  123. if spafinloc <= 0 and cumcondslip > 0:
  124. if dick > cumcondslip_deep:
  125. cumcondslip_deep = dick + rand (0,2)
  126. else
  127. cumcondslip_deep += rand (0,2)
  128. end
  129. end
  130. sparrtemp = arrsize('sparrvol')
  131. !!{ Check to see if this is flagged as a preejaculate emmission. All vaginal penetrations that flag this as cumprecheck contain preejaculate. Guidelines for calling it: If your boy is likely to have masterbated, had sex, or otherwise encouraged semen to leak out of their urethra in the last 48 hours, they probably have some fertile preejaculate. If in doubt, let it leak. The chances of pregnancy from it are low, and the MC should have been wearing protection.}
  132. if cumprecheck ! 1:
  133. !!{ Here it checks for anal deposit and increments anal creampie variable.}
  134. if spafinloc = 3:
  135. if sexunaware = 1 or sexcontra = 6:
  136. pcs_acp_unknown += 1
  137. else
  138. pcs_acp_known += 1
  139. end
  140. end
  141. !!{ Here it checks for vaginal deposit.}
  142. if spafinloc <= 0:
  143. !!{ Next it sets the variables in the array. The cumming boys name is first and cum age to 0.
  144. !! The cum delivery location is set to vaginally, and we check to see if this is an unknowing sex act.
  145. !! If it is, it makes it so the MC doesn''t know who did it.
  146. !! If the boy has a custom specified potency 'sexspecpot', it flags the potency. Otherwise it sets it to the default.
  147. !! Default potency potential is generated from a random multiplier of sexvolume.
  148. !! Sexvolume defaults to 40 (4 mL), but may be overwritten with 'sexvolume'.}
  149. $cumarrnam[cumarrtemp] = $boy
  150. cumarrage[cumarrtemp] = 0
  151. cumarrdel[cumarrtemp] = 0
  152. cumarrcnt[cumarrtemp] = stat['cum_count']
  153. cumarrppt[cumarrtemp] = sexspecpot
  154. !!{ Now it sets up the splatter and actual internal cum.
  155. !! First it sets the array to the spatter end of file. Then it checks for riding bareback.
  156. !! If theres a condom, it gives a chance for the condom to fail in general, slip off and remain in the vagina, or break.}
  157. if sexcontra > 2:
  158. if noprotect = 1: noprotect = 0 & sexcontra = 4
  159. if sexcontra = 3:
  160. temprand = rand(0,1000)
  161. dick_wid = 3
  162. if $dick_girth = 'skinny': dick_wid = 2
  163. if $dick_girth = 'slim': dick_wid = 3
  164. if $dick_girth = 'well proportioned': dick_wid = 3
  165. if $dick_girth = 'thicker than average': dick_wid = 4
  166. if $dick_girth = 'thick': dick_wid = 4
  167. if $dick_girth = 'massive': dick_wid = 5
  168. if $dick_girth = 'monstrous': dick_wid = 6
  169. break_thresh = dick_wid * 2
  170. break_thresh -= pcs_vag / 4
  171. break_thresh += dick / 4
  172. slip_thresh = 36 - (dick_wid * 2)
  173. slip_thresh -= (pcs_vag / 2)
  174. slip_thresh -= dick / 2
  175. if break_thresh < 1: break_thresh = 1
  176. if slip_thresh < 4: slip_thresh = 4
  177. break_thresh += slip_thresh
  178. if temprand = 0:
  179. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/4
  180. cumarrcon[cumarrtemp] = 3
  181. elseif temprand <= slip_thresh:
  182. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/200
  183. cumarrcon[cumarrtemp] = 5
  184. cumcondslip = 1
  185. cumcondsanb = cumarrtemp
  186. sexcontra = 5
  187. sparrage[sparrtemp] = 0
  188. sparrloc[sparrtemp] = 17
  189. $sparrnam[sparrtemp] = $boy
  190. sparrcnt[sparrtemp] = stat['cum_count']
  191. sparrppt[sparrtemp] = sexspecpot
  192. sparrvol[sparrtemp] += sexvolume
  193. cumsumbod += sexvolume
  194. cumsumvag += sexvolume
  195. sparridt[sparrtemp] = cumarrkno[cumarrtemp]
  196. sparrslc[sparrtemp] = 0
  197. cumcondslip += 1
  198. if cumcondslip_deep <= 0:cumcondslip_deep = rand(1, dick)
  199. if sparridt[sparrtemp] >= 0:cumcondslip_aware = 1
  200. dynamic $ferteggfather
  201. elseif temprand <= break_thresh:
  202. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/2
  203. cumarrcon[cumarrtemp] = 4
  204. sexcontra = 4
  205. sparrage[sparrtemp] = 0
  206. sparrloc[sparrtemp] = 0
  207. $sparrnam[sparrtemp] = $boy
  208. sparrcnt[sparrtemp] = stat['cum_count']
  209. sparrppt[sparrtemp] = sexspecpot
  210. sparrvol[sparrtemp] += sexvolume
  211. cumsumbod += sexvolume
  212. cumsumvag += sexvolume
  213. sparridt[sparrtemp] = cumarrkno[cumarrtemp]
  214. sparrslc[sparrtemp] = 0
  215. dynamic $ferteggfather
  216. else
  217. cumarrcpt[cumarrtemp] += 5
  218. cumarrcon[cumarrtemp] = 3
  219. end
  220. !!{ Next it checks to see if the event is calling specifically for a burst or slipped off condom.
  221. !! It treats them the same as if the condom above had a failure.}
  222. elseif sexcontra = 4:
  223. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/2
  224. cumarrcon[cumarrtemp] = 4
  225. sparrage[sparrtemp] = 0
  226. sparrloc[sparrtemp] = 0
  227. $sparrnam[sparrtemp] = $boy
  228. sparrcnt[sparrtemp] = stat['cum_count']
  229. sparrppt[sparrtemp] = sexspecpot
  230. sparrvol[sparrtemp] += sexvolume
  231. cumsumbod += sexvolume
  232. cumsumvag += sexvolume
  233. sparridt[sparrtemp] = cumarrkno[cumarrtemp]
  234. sparrslc[sparrtemp] = 0
  235. dynamic $ferteggfather
  236. elseif sexcontra = 5:
  237. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/200
  238. cumarrcon[cumarrtemp] = 5
  239. cumcondslip = 1
  240. cumcondsanb = cumarrtemp
  241. sparrage[sparrtemp] = 0
  242. sparrloc[sparrtemp] = 17
  243. $sparrnam[sparrtemp] = $boy
  244. sparrcnt[sparrtemp] = stat['cum_count']
  245. sparrppt[sparrtemp] = sexspecpot
  246. sparrvol[sparrtemp] += sexvolume
  247. cumsumbod += sexvolume
  248. cumsumvag += sexvolume
  249. sparridt[sparrtemp] = cumarrkno[cumarrtemp]
  250. sparrslc[sparrtemp] = 0
  251. cumcondslip += 1
  252. if cumcondslip_deep <= 0:cumcondslip_deep = rand(1, dick)
  253. if sparridt[sparrtemp] >= 0:cumcondslip_aware = 1
  254. dynamic $ferteggfather
  255. !!{ Next, check for sabotaged condoms. First sabotaged by you, then sabotaged by the guy.
  256. !! If they were sabotaged, it acts similar to a condom failure, but worse.}
  257. elseif sexcontra = 6:
  258. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/3
  259. cumarrcon[cumarrtemp] = 6
  260. elseif sexcontra = 7:
  261. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/3
  262. cumarrcon[cumarrtemp] = 7
  263. dynamic $ferteggfather
  264. end
  265. !!{ If you have no protection, you get a nice, full load of semen.}
  266. else
  267. sparrage[sparrtemp] = 0
  268. sparrloc[sparrtemp] = 0
  269. $sparrnam[sparrtemp] = $boy
  270. sparrcnt[sparrtemp] = stat['cum_count']
  271. sparrppt[sparrtemp] = sexspecpot
  272. sparrvol[sparrtemp] += sexvolume
  273. cumsumbod += sexvolume
  274. cumsumvag += sexvolume
  275. sparridt[sparrtemp] = cumarrkno[cumarrtemp]
  276. sparrslc[sparrtemp] = 0
  277. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/5*4
  278. cumarrcon[cumarrtemp] = sexcontra
  279. dynamic $ferteggfather
  280. end
  281. !! creampie vaginal statistics:
  282. if spafinloc = 0:
  283. !!STD checks
  284. dynamic $venerasiak
  285. !! safe creampie (if cycle > 3 or on pill or succubus):
  286. if cycle > 3 or pillcon2 > 1000 or succubusflag = 1:
  287. if sexunaware = 1 or sexcontra = 6:
  288. pcs_cp_safe_unknown += 1
  289. else
  290. pcs_cp_safe_known += 1
  291. end
  292. !! pretty safe creampie (if cycle = 3 or cycle = 0):
  293. elseif cycle = 0 or cycle = 3:
  294. if sexunaware = 1 or sexcontra = 6:
  295. pcs_cp_notsafe_unknown += 1
  296. else
  297. pcs_cp_notsafe_known += 1
  298. end
  299. !! risky creampie (not on pill, fertile part of the cycle):
  300. else
  301. if sexunaware = 1 or sexcontra = 6:
  302. pcs_cp_risky_unknown += 1
  303. else
  304. pcs_cp_risky_known += 1
  305. end
  306. end
  307. end
  308. !!{ If you arent getting it in the vagina, and the boy isnt pumping it into a condom, a spatter is made and applied.
  309. !! If you arent wearing any panties and it was called to hit your panties, it goes directly to your groin.
  310. !! If you are naked and it calls for a clothing strike, it will go to your body instead.}
  311. elseif spafinloc > 0 and sexcontra < 3:
  312. sparrage[sparrtemp] = 0
  313. sparrcnt[sparrtemp] = stat['cum_count']
  314. if $pantyworntype = 'none':
  315. if spafinloc = 2:
  316. spafinloc = 1
  317. elseif spafinloc = 5:
  318. spafinloc = 4
  319. end
  320. end
  321. if $clothingworntype = 'nude':
  322. if spafinloc = 2:
  323. spafinloc = 1
  324. elseif spafinloc = 5:
  325. spafinloc = 4
  326. elseif spafinloc = 6:
  327. if rand(0,1) = 0:
  328. spafinloc = 1
  329. else
  330. spafinloc = 4
  331. end
  332. elseif spafinloc = 7:
  333. if rand(0,1) = 0:
  334. spafinloc = 14
  335. else
  336. spafinloc = 15
  337. end
  338. end
  339. end
  340. sparrloc[sparrtemp] = spafinloc
  341. if spafinloc = 12 and pcs_breath = 1: pcs_breath = 0
  342. if spafinloc = 12 and swallow >= 10 and rand(0,3) = 0: pcs_energy += 2 & pcs_hydra += 1
  343. $sparrnam[sparrtemp] = $boy
  344. sparrppt[sparrtemp] = sexspecpot
  345. sparrvol[sparrtemp] += sexvolume
  346. cumsumbod += sexvolume
  347. if spafinloc = 3:
  348. cumsumass += sexvolume
  349. end
  350. sparridt[sparrtemp] = cumarrkno[cumarrtemp]
  351. sparrslc[sparrtemp] = 0
  352. end
  353. if cumarrppt[cumarrtemp] < cumarrcpt[cumarrtemp]:cumarrcpt[cumarrtemp] = cumarrppt[cumarrtemp]
  354. sexpartkno = 0
  355. sexunaware = 0
  356. !!{ And this is the pre ejaculate release talked about above.}
  357. elseif sexcontra < 3 and spafinloc = 0:
  358. $cumarrnam[cumarrtemp] = $boy
  359. cumarrcnt[cumarrtemp] = stat['cum_count']
  360. cumarrppt[cumarrtemp] = sexspecpot
  361. cumarrage[cumarrtemp] = 0
  362. cumarrdel[cumarrtemp] = 0
  363. cumarrcon[cumarrtemp] = sexcontra
  364. cumarrcpt[cumarrtemp] += cumarrppt[cumarrtemp]/12
  365. if cumarrppt[cumarrtemp] < cumarrcpt[cumarrtemp]:cumarrcpt[cumarrtemp] = cumarrppt[cumarrtemp]
  366. end
  367. !!STD from anal check
  368. if spafinloc = 3: dynamic $venerasiak
  369. !!STD from oral check
  370. if spafinloc = 12: dynamic $venerasiakOral
  371. cumprecheck = 0
  372. spafinloc = 0
  373. sexvolume = 0
  374. dynamic $din_Update_Condom_Counts
  375. if cumsumass >= 60:
  376. arrmodtmp = arrpos('sparrloc',3)
  377. if sparrslc[arrmodtmp] <= 0: sparrslc[arrmodtmp] += 1
  378. end
  379. if cumsumvag >= 60:
  380. arrmodtmp = arrpos('sparrloc',0)
  381. if sparrslc[arrmodtmp] <= 0: sparrslc[arrmodtmp] += 1
  382. end
  383. killvar 'sexspecpot'
  384. end
  385. if $ARGS[0] = 'cumgather':
  386. cloc = ARGS[1]
  387. i = arrpos('sparrloc', cloc)
  388. if i ! -1 and i < arrsize('sparrloc'):
  389. if cloc = 0:
  390. $part = 'pussy'
  391. elseif cloc = 1:
  392. $part = 'pussylips'
  393. elseif cloc = 2 or cloc = 5:
  394. $part = 'your panties'
  395. elseif cloc = 3:
  396. $part = 'anus'
  397. elseif cloc = 4:
  398. $part = 'buttocks'
  399. elseif cloc = 6 or cloc = 7:
  400. $part = 'clothes'
  401. elseif cloc = 8:
  402. $part = 'back'
  403. elseif cloc = 9:
  404. $part = 'legs'
  405. elseif cloc = 10:
  406. $part = 'arms'
  407. elseif cloc = 11:
  408. $part = 'face'
  409. elseif cloc = 14:
  410. $part = 'stomach'
  411. elseif cloc = 15:
  412. $part = 'breasts'
  413. elseif cloc = 16:
  414. $part = 'hair'
  415. else
  416. $part = 'unknown'
  417. end
  418. if salfetka > 0:
  419. salfetka -= 1
  420. minut += 5
  421. 'You use a wipe to clean the sperm from your <<$part>>.'
  422. gs 'cum_cleanup', 'cleanloc', cloc
  423. gs 'stat'
  424. end
  425. end
  426. end
  427. if $ARGS[0] = 'cumeater':
  428. cloc = ARGS[1]
  429. i = arrpos('sparrloc', cloc)
  430. if i ! -1 and i < arrsize('sparrloc'):
  431. cumloc[12] = 1
  432. pcs_breath = 0
  433. $part = ''
  434. if cloc = 13:
  435. gs 'cum_cleanup', 'cleanloc', cloc
  436. 'You carefully lick the sperm residue from both hands, enjoying the tart taste of semen.'
  437. else
  438. if cloc = 0:
  439. $part = 'pussy'
  440. elseif cloc = 1:
  441. $part = 'pussylips'
  442. elseif cloc = 2 or cloc = 5:
  443. $part = 'your panties'
  444. gs 'cum_cleanup', 'cleanloc', 2
  445. gs 'cum_cleanup', 'cleanloc', 5
  446. elseif cloc = 3:
  447. $part = 'anus'
  448. elseif cloc = 4:
  449. $part = 'buttocks'
  450. elseif cloc = 6 or cloc = 7:
  451. $part = 'clothes'
  452. gs 'cum_cleanup', 'cleanloc', 6
  453. gs 'cum_cleanup', 'cleanloc', 7
  454. elseif cloc = 8:
  455. $part = 'back'
  456. elseif cloc = 9:
  457. $part = 'legs'
  458. elseif cloc = 10:
  459. $part = 'arms'
  460. elseif cloc = 11:
  461. $part = 'face'
  462. elseif cloc = 14:
  463. $part = 'stomach'
  464. elseif cloc = 15:
  465. $part = 'breasts'
  466. elseif cloc = 16:
  467. $part = 'hair'
  468. else
  469. $part = 'unknown'
  470. end
  471. if rand(0, 1) = 0:
  472. 'You collect a handful of sperm from your <<$part>> in your hand and lick it all up, enjoying the tart taste of semen.'
  473. else
  474. 'You collect the sperm from your <<$part>> with your fingers and lick them, enjoying the tart taste of semen.'
  475. end
  476. gs 'cum_cleanup', 'cleanloc', cloc
  477. end
  478. minut += 5
  479. gs 'stat'
  480. end
  481. end
  482. --- Cum_Manage ---------------------------------