sex_ev_stats.qsrc 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. # sex_ev_stats
  2. if $ARGS[0] = 'npc_update':
  3. gs 'boy_updater', 'fav_body_part'
  4. gs 'boy_updater', 'dick_update'
  5. gs 'boy_updater', 'stamina_update'
  6. gs 'boy_updater', 'humor_update'
  7. gs 'boy_updater', 'schedule_update'
  8. gs 'boy_updater', 'trait_updates'
  9. end
  10. if $ARGS[0] = 'starting_stats':
  11. $lastwornpantytype['sex_ev'] = $pantyworntype
  12. lastwornpantynumber['sex_ev'] = pantywornnumber
  13. $lastwornbratype['sex_ev'] = $braworntype
  14. lastwornbranumber['sex_ev'] = brawornnumber
  15. $lastwornclothingtype['sex_ev'] = $clothingworntype
  16. lastwornclothingnumber['sex_ev'] = clothingwornnumber
  17. sex_ev['starting_makeup'] = pcs_makeup
  18. sex_ev['cum_vagina'] = cum_loc['vagina']
  19. sex_ev['cum_labia'] = cum_loc['labia']
  20. sex_ev['cum_panty_front'] = cum_loc['panty_front']
  21. sex_ev['cum_anus'] = cum_loc['anus']
  22. sex_ev['cum_butt'] = cum_loc['butt']
  23. sex_ev['cum_panty_back'] = cum_loc['panty_back']
  24. sex_ev['cum_clothes_groin'] = cum_loc['clothes_groin']
  25. sex_ev['cum_clothes'] = cum_loc['clothes']
  26. sex_ev['cum_back'] = cum_loc['back']
  27. sex_ev['cum_legs'] = cum_loc['legs']
  28. sex_ev['cum_arms'] = cum_loc['arms']
  29. sex_ev['cum_face'] = cum_loc['face']
  30. sex_ev['cum_mouth'] = cum_loc['mouth']
  31. sex_ev['cum_hands'] = cum_loc['hands']
  32. sex_ev['cum_stomach'] = cum_loc['stomach']
  33. sex_ev['cum_tits'] = cum_loc['tits']
  34. sex_ev['cum_hair'] = cum_loc['hair']
  35. sex_ev['starting_sweat'] = pcs_sweat
  36. sex_ev['orgasm'] = orgasm
  37. sex_ev['orgasm_limit'] = orgasm + 6
  38. sex_ev['pc_condom_count'] = mc_inventory['normal_condoms']
  39. sex_ev['start_time'] = totminut
  40. sex_ev['start_hour'] = hour
  41. if $start_type[1] ! 'nomagic': sex_ev['magik'] = pcs_magik
  42. if npc_fuckbuddy[$boy] ! 1: npc_fuckbuddy[$boy] = 1
  43. if tabletkiday = daystart: sex_ev['bc_take'] = 1
  44. if $npc_lovername[$boy] = '':
  45. $npc_lovername[$boy] = 'babe'
  46. $npc_lovername2[$boy] = 'baby'
  47. end
  48. if npc_creampie_permission[$boy] = 1: sex_ev['creampie_allowance'] = 1
  49. if birth_control['think_safe'] = 1:
  50. if tabletkishot > 0:
  51. $sex_ev['bc_type'] = 'shot'
  52. else
  53. $sex_ev['bc_type'] = ' pill'
  54. end
  55. end
  56. end
  57. if $ARGS[0] = 'save_stats':
  58. !! number of times you have initiated or responded to a booty call
  59. npc_bootycalls[$boy] += 1
  60. !! number of times you have had jerked off an npc
  61. if sex_ev['hj_count'] > 0: npc_hj_count[$boy] += 1
  62. !! number of times you have had blown an npc
  63. if sex_ev['bj_count'] > 0: npc_bj_count[$boy] += 1
  64. !! number of times you have had sex with an npc
  65. if sex_ev['fuck'] > 0 or sex_ev['fuck_count'] > 0: npc_fuck_times[$boy] += 1
  66. !! number of times you have fucked bareback
  67. npc_bareback_times[$boy] += sex_ev['no_condom']
  68. !! number of times you have fucked with condoms
  69. npc_condom_times[$boy] += sex_ev['condom']
  70. !! number of times you have been eaten out by an npc
  71. npc_kuni_times[$boy] += sex_ev['kuni']
  72. !! number of times you have made your fuckbuddy cum
  73. npc_cum_count[$boy] += sex_ev['cum_count']
  74. !! number of times your fuckbuddy has brought you to orgasm
  75. npc_orgasm_count[$boy] += sex_ev['orgasm_count']
  76. !! number of times you have faked an orgasm
  77. npc_fake_orgasm_count[$boy] += sex_ev['fake_orgasm_count']
  78. !! number of times you have been creampied by your fuckbudy
  79. npc_creampie_count[$boy] += sex_ev['creampie_count']
  80. !! number of times you have been accidentally creampied by your fuckbudy
  81. npc_accidental_creampie_count[$boy] += sex_ev['accidental_creampie_count']
  82. !! number of times you have cum together with your fuckbuddy
  83. npc_cum_together_count[$boy] += sex_ev['creampie_orgasm']
  84. !! number of simultaneous orgasms you have experienced
  85. stat['simultaneous_orgasm_count'] += sex_ev['simultaneous_orgasm_count']
  86. !! number of times your fuckbuddy has cum on your face
  87. npc_facial_count[$boy] += sex_ev['facial_count']
  88. !! number of times your fuckbuddy has cum on your tits
  89. npc_cum_tits_count[$boy] += sex_ev['cum_tits']
  90. !! number of times your fuckbuddy has pulled out
  91. npc_pullout_count[$boy] += sex_ev['pullout_count']
  92. !! number of times your fuckbuddy has cum in your mouth
  93. npc_mouth_cum_count[$boy] += sex_ev['mouth_cum_count']
  94. !! number of times you have jerked him to completion
  95. npc_cum_hand_count[$boy] += sex_ev['cum_hand']
  96. !! number of times you have swallowed for your fuckbuddy
  97. npc_swallow_count[$boy] += sex_ev['swallow_count']
  98. !! number of times you have spit out his cum
  99. npc_spit_count[$boy] += sex_ev['spit_count']
  100. !! number of times you have fucked in the shower
  101. npc_shower_sex_count[$boy] += sex_ev['shower_sex']
  102. !! number of times your fuckbuddy has cum in your mouth
  103. npc_mouth_cum_count[$boy] += sex_ev['mouth_cum_count']
  104. !! number of times you have denied letting your fuckbuddy take your virginity
  105. npc_virgin_deny[$boy] += sex_ev['virgin_deny']
  106. !! if your lover takes your virginity without consent
  107. npc_virgin_rapist[$boy] += sex_ev['virgin_rape']
  108. if sex_ev['sleep_fuck'] > 0: npc_sleep_fuck[$boy] += 1
  109. if hour >= 8 and hour < 14 and week < 6 and mid($start_type,1,2) = 'sg' and SchoolAtestat = 0 and kanikuli = 0 and schoolProgulDay ! daystart:
  110. !!absence from school
  111. npc_school_absences[$boy] = schoolprogul
  112. end
  113. !! if your lover says they have pullout game and do not cum inside you, it will be remembered that the last time you had sex
  114. if sex_ev['pullout_game'] = 1 and sex_ev['no_condom'] = 1 and sex_ev['creampie_count'] = 0:
  115. npc_no_creampie_mistakes[$boy] += 1
  116. npc_no_creampie_mistakes_last_time[$boy] = 1
  117. npc_pullout_failure_last_time[$boy] = 0
  118. elseif sex_ev['pullout_game'] = 1 and sex_ev['no_condom'] = 1 and sex_ev['creampie_count'] > 0 and sex_ev['broken_condom'] = 0:
  119. npc_pullout_failure[$boy] += 1
  120. npc_pullout_failure_last_time[$boy] = 1
  121. npc_no_creampie_mistakes_last_time[$boy] = 0
  122. end
  123. if sex_ev['prostitution_freebie'] = 1: stat['prostitution_freebies'] += 1
  124. if sex_ev['phone_film'] = 2 or (sex_ev['phone_film'] = 1 and npc_abusive[$boy] > 0):
  125. npc_sex_video_count[$boy] += 1
  126. !!npc_sex_video<<npc_sex_video_count[$boy]>> = 1
  127. end
  128. end
  129. if $ARGS[0] = 'birth_control_know':
  130. npc_know_bc_not_effective[$boy] = 0
  131. npc_know_not_bc[$boy] = 0
  132. npc_know_bc[$boy] = 1
  133. sex_ev['bc_tell'] = 1
  134. if npc_pay_for_ma_pill[$boy] = 1: npc_pay_for_ma_pill[$boy] = -1
  135. end
  136. if $ARGS[0] = 'no_birth_control_know':
  137. npc_know_not_bc[$boy] = 1
  138. npc_know_bc[$boy] = 0
  139. npc_know_bc_not_effective[$boy] = 0
  140. sex_ev['bc_tell'] = 1
  141. end
  142. if $ARGS[0] = 'bareback_risk_active':
  143. npc_bareback_risk[$boy] = 1
  144. end
  145. if $ARGS[0] = 'bareback_risk_deactive':
  146. npc_bareback_risk[$boy] = 0
  147. end
  148. if $ARGS[0] = 'prostitution_pay_code':
  149. if $npc_rel_type[$boy] = 'sugar_daddy' and sex_ev['sugar_daddy_paid'] = 0:
  150. sex_ev['sugar_daddy_paid'] = 1
  151. sex_ev['prostitution_paid'] = 1
  152. money += npc_sugar_daddy_price[$boy] + sex_ev['prostitution_bonus']
  153. elseif $npc_rel_type[$boy] = 'p_customer' and sex_ev['prostitution_paid'] = 0:
  154. sex_ev['prostitution_paid'] = 1
  155. money += npc_prostitution_price[$boy] + sex_ev['prostitution_bonus']
  156. end
  157. end
  158. if $ARGS[0] = 'single_know':
  159. !! the npc knows player is single
  160. npc_know_have_boyfriend[$boy] = 0
  161. npc_know_have_girlfriend[$boy] = 0
  162. end
  163. if $ARGS[0] = 'dating_boy_know':
  164. !! the npc knows player is single
  165. npc_know_have_boyfriend[$boy] = 1
  166. end
  167. if $ARGS[0] = 'dating_girl_know':
  168. !! the npc knows player is single
  169. npc_know_have_girlfriend[$boy] = 1
  170. end
  171. if $ARGS[0] = 'npc_is_single':
  172. know_npc_girlfriend[$boy] = 0
  173. know_npc_single[$boy] = 1
  174. end
  175. if $ARGS[0] = 'npc_is_dating':
  176. know_npc_girlfriend[$boy] = 1
  177. know_npc_single[$boy] = 0
  178. end
  179. if $ARGS[0] = 'npc_is_married':
  180. know_npc_wife[$boy] = 1
  181. know_npc_single[$boy] = 0
  182. end
  183. if $ARGS[0] = 'sleep_check':
  184. sex_ev['sleep_cum_vagina'] = cum_loc['vagina']
  185. sex_ev['sleep_cum_butt'] = cum_loc['butt']
  186. sex_ev['sleep_cum_face'] = cum_loc['face']
  187. sex_ev['sleep_cum_stomach'] = cum_loc['stomach']
  188. sex_ev['sleep_cum_tits'] = cum_loc['tits']
  189. sex_ev['sleep_cum_hair'] = cum_loc['hair']
  190. end
  191. if $ARGS[0] = 'sex_all_night':
  192. end
  193. --- sex_ev_stats ---------------------------------