stat_display 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104
  1. # stat_display
  2. gs 'outdoors', 'main'
  3. !!Sex stat update
  4. stat['mast'] += mastr & mastr = 0
  5. stat['hj'] += hj & hj = 0
  6. stat['bj'] += bj & bj = 0
  7. stat['vaginal'] += sex & sex = 0
  8. stat['anal'] += anal & anal = 0
  9. stat['cuni'] += kuni & kuni = 0
  10. stat['anal_strap_give'] += pegging & pegging = 0
  11. !!!!!!!!!!!!!!!!!!!!!
  12. !!!Pain calculation!!!
  13. !!!!!!!!!!!!!!!!!!!!!
  14. pain['body1'] = pain['head'] + pain['hair'] + pain['ears'] + pain['eyebrows'] + pain['eyes'] + pain['cheeks'] + pain['nose'] + pain['mouth'] + pain['lips'] + pain['tongue']
  15. pain['body2'] = pain['throat'] + pain['neck'] + pain['back'] + pain['asscheeks'] + pain['asshole'] + pain['hips'] + pain['thighs'] + pain['legL'] + pain['legR'] + pain['feet']
  16. pain['body3'] = pain['toes'] + pain['shoulders'] + pain['armL'] + pain['armR'] + pain['hands'] + pain['fingers'] + pain['chest'] + pain['breasts'] + pain['nipples'] + pain['ribs']
  17. pain['body4'] = pain['tummy'] + pain['pubic'] + pain['vaginal'] + pain['labia'] + pain['clitoris'] + pain['urethra'] + pain['cervix']
  18. pain['total'] = pain['body1'] + pain['body2'] + pain['body3'] + pain['body4'] + (vgape * 8) + (agape * 10) + (spanked * 24)
  19. if pain['total'] > 100: pain['total'] = 100
  20. pain['relief'] = 0
  21. if alko > 6:
  22. pain['relief'] = 50
  23. elseif alko > 3:
  24. pain['relief'] = 20
  25. end
  26. if StrongNarkota > 0:
  27. pain['relief'] = 90
  28. elseif nark > 0:
  29. pain['relief'] = 60
  30. elseif pain['killer'] > 12:
  31. pain['relief'] = 50
  32. end
  33. if pain['relief'] ! 0:
  34. if (pain['total'] / pain['relief']) > 0:
  35. pain['total'] = pain['total'] / pain['relief']
  36. elseif pain['total'] > 0:
  37. pain['total'] = 0
  38. end
  39. end
  40. if pain['total'] > 80:
  41. if (pcs_health * 5) >= healthmax: pcs_health = pcs_health * 20 / 100
  42. if (pcs_mood * 5) >= 100: pcs_mood = pcs_mood * 20 / 100
  43. elseif pain['total'] > 60:
  44. if (pcs_health * 5 / 2) >= healthmax: pcs_health = pcs_health * 40 / 100
  45. if (pcs_mood * 5 / 2) >= 100: pcs_mood = pcs_mood * 40 / 100
  46. elseif pain['total'] > 40:
  47. if (pcs_health * 5 / 3) >= healthmax: pcs_health = pcs_health * 60 / 100
  48. if (pcs_mood * 5 / 3) >= 100: pcs_mood = pcs_mood * 60 / 100
  49. elseif pain['total'] > 20:
  50. if (pcs_health * 5 / 4) >= healthmax: pcs_health = pcs_health * 80 / 100
  51. if (pcs_mood * 5 / 4) >= 100: pcs_mood = pcs_mood * 80 / 100
  52. elseif pain['total'] > 0:
  53. if (pcs_health * 10 / 9) >= healthmax: pcs_health = pcs_health * 90 / 100
  54. if (pcs_mood * 10 / 9) >= 100: pcs_mood = pcs_mood * 90 / 100
  55. end
  56. !!!!!!!!!!!!!!!!!!!!!
  57. !!!Beginning Description!!!
  58. !!!!!!!!!!!!!!!!!!!!!
  59. if pcs_sleep > 100: pcs_sleep = 100
  60. if Enable_statfsize>0:$stat_msg = '<font size=<<Enable_statfsize>>><<$stat_msg>>'
  61. $stat_android = '<b><<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>></b>'
  62. $stat_msg += '<<$weather>><BR>'
  63. $stat_msg += '<BR><<$stat_android>> <<$week[week]>> <<day>> <<$month>> <<year>>'
  64. $stat_android += '<<$week[week]>> <<day>>/<<month>>, <<money>> ₽, <a href="exec:clr & pl $stat_android">Status</a>'
  65. ! $stat_android for short desc in android mode, $stat_msg for status bar.
  66. $stat_msg += '<BR>'
  67. $pockets = 'pockets'
  68. if bag > 0: $pockets = 'purse'
  69. $stat_msg += '<BR>You have <b><<money>> ₽</b> in your <<$pockets>>.'
  70. if bankAccount = 1:
  71. if karta >= 0:
  72. $stat_msg += '<BR>You have <b><<karta>> ₽</b> in your bank account.'
  73. else
  74. $stat_msg += '<BR><font color="red">Your bank account is overdrawn by <b><<karta>> ₽</b>!!</font>'
  75. end
  76. end
  77. if stolmoney > 0: $stat_msg += '<BR>You have <b><<stolmoney>> ₽</b> in your desk drawer.'
  78. $stat_msg += '<BR>'
  79. if ETOmenu = 1:
  80. $stat_msg += '<BR><b><<$pcs_health>></b>'
  81. $stat_msg += '<BR><b><<$pcs_willpwr>></b>'
  82. $stat_msg += '<BR><b><<$pcs_energy>></b>'
  83. $stat_msg += '<BR><b><<$water>></b>'
  84. $stat_msg += '<BR><b><<$pcs_sleep>></b>'
  85. elseif Enable_scalepic = 2:
  86. $st_temp='rgb(<<(16777216 + fcolor) mod 256>>,<<(16777216 + fcolor)/256 mod 256>>,<<(16777216 + fcolor)/65536>>)'
  87. $stat_msg += '<p><font color="<<$st_temp>>"><TABLE width="300" cellpadding="1" cellspacing="0"><TR><TD width="85%">'+FUNC('indiktab', '2', pcs_horny, pcs_horny)+'</TD><TD> Arousal</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '2', pain['total'], pain['total'])+'</TD><TD> Pain</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_health * 100 / healthmax, pcs_health)+'</TD><TD> Health</TD></TR>'
  88. if MagikDostup = 0: $stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_manna * 100 / mannamax, pcs_manna)+'</TD><TD> Manna</TD></TR>'
  89. $stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_willpwr * 100 / willpowermax, pcs_willpwr)+'</TD><TD> Willpower</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_stam * 100 / stammax, pcs_stam)+'</TD><TD> Stamina</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_mood, pcs_mood)+'</TD><TD> Mood</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_energy, pcs_energy)+'</TD><TD> Hunger</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_sleep, pcs_sleep)+'</TD><TD> Sleep</TD></TR></TABLE></font></p>'
  90. else
  91. gs 'indik', '2', pcs_horny, pcs_horny
  92. $stat_msg += '<BR><<$ind>> Arousal'
  93. gs 'indik', '2', pain['total'], pain['total']
  94. $stat_msg += '<BR><<$ind>> Pain'
  95. gs 'indik', '1', pcs_health * 100 / healthmax, pcs_health
  96. $stat_msg += '<BR><<$ind>> Health'
  97. if MagikDostup = 0:
  98. gs 'indik', '1', pcs_manna * 100 / mannamax, pcs_manna
  99. $stat_msg += '<BR><<$ind>> Manna'
  100. end
  101. gs 'indik', '1', pcs_willpwr * 100 / willpowermax, pcs_willpwr
  102. $stat_msg += '<BR><<$ind>> Willpower'
  103. gs 'indik', '1', pcs_stam * 100 / stammax, pcs_stam
  104. $stat_msg += '<BR><<$ind>> Stamina'
  105. gs 'indik', '1', pcs_mood, pcs_mood
  106. $stat_msg += '<BR><<$ind>> Mood'
  107. gs 'indik', '1', pcs_energy, pcs_energy
  108. $stat_msg += '<BR><<$ind>> Hunger'
  109. gs 'indik', '1', pcs_sleep, pcs_sleep
  110. $stat_msg += '<BR><<$ind>> Sleep'
  111. end
  112. $stat_msg += '<BR>'
  113. if Enable_showattr = 0:
  114. $stat_msg += '<BR> <a href="exec:Enable_showattr = 1 & gs ''$menu_obnovit''">Attributes</a><BR>'
  115. end
  116. if Enable_showattr = 1:
  117. $stat_msg += '<BR> <a href="exec:Enable_showattr = 0 & gs ''$menu_obnovit''">Attributes:</a>'
  118. if Enable_scalepic = 2:
  119. if pcs_dom > 10:
  120. $dom_stat_msg = 'dominant'
  121. elseif sub > 10:
  122. $dom_stat_msg = 'submissive'
  123. else
  124. $dom_stat_msg = 'neutral'
  125. end
  126. $stat_msg += '<font color="<<$st_temp>>"><TABLE cellpadding="1" cellspacing="0" width="300"><TR><TD width="85%">'+FUNC('indiktab', '3', 100+pcs_dom-sub, 100+pcs_dom-sub,$dom_stat_msg)+'</TD><TD> Dominance</TD></TR> <TR><TD width="85%">'+FUNC('indiktab', '1', pcs_stren, pcs_stren)+'</TD><TD> Strength</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_agil, pcs_agil)+'</TD><TD> Agility</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_vital, pcs_vital)+'</TD><TD> Endurance</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_intel, pcs_intel)+'</TD><TD> Intelligence</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_sprt, pcs_sprt)+'</TD><TD> Spirit</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_react, pcs_react)+'</TD><TD nowrap> Mental Agility</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_chrsm, pcs_chrsm)+'</TD><TD> Charisma</TD></TR><TR><TD width="85%">'+FUNC('indiktab', '1', pcs_prcptn, pcs_prcptn)+'</TD><TD> Perception</TD></TR>'
  127. if MagikDostup = 0: $stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_magik, pcs_magik)+'</TD><TD> Magic</TD></TR>'
  128. $stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_apprnc / 2, pcs_apprnc)+'</TD><TD> Attractiveness</TD></TR>'
  129. if SchoolAtestat = 0 and StoryLine > 0:$stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_grades, pcs_grades)+'</TD><TD nowrap> School Grades</TD></TR>'
  130. if pcs_exhibition > 0:$stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_exhibition, pcs_exhibition)+'</TD><TD> Exhibitionism</TD></TR>'
  131. if pcs_heels > 0:$stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_heels, pcs_heels)+'</TD><TD> Heels skill</TD></TR>'
  132. $stat_msg += '</TABLE></font>'
  133. killvar '$dom_stat_msg'
  134. else
  135. gs 'indik','3', 50+(pcs_dom-sub)/2, 50+(pcs_dom-sub)/2
  136. $stat_msg += '<BR><<$ind>> Dominance'
  137. if pcs_dom > 10:
  138. $stat_msg += ' (dominant)'
  139. elseif sub > 10:
  140. $stat_msg += ' (submissive)'
  141. else
  142. $stat_msg += ' (natural)'
  143. end
  144. ! $stat_msg += '<BR>'
  145. gs 'indik', '1', pcs_stren, pcs_stren
  146. $stat_msg += '<BR><<$ind>> Strength'
  147. gs 'indik', '1', pcs_agil, pcs_agil
  148. $stat_msg += '<BR><<$ind>> Agility'
  149. gs 'indik', '1', pcs_vital, pcs_vital
  150. $stat_msg += '<BR><<$ind>> Endurance'
  151. gs 'indik', '1', pcs_intel, pcs_intel
  152. $stat_msg += '<BR><<$ind>> Intelligence'
  153. gs 'indik', '1', pcs_sprt, pcs_sprt
  154. $stat_msg += '<BR><<$ind>> Spirit'
  155. gs 'indik', '1', pcs_react, pcs_react
  156. $stat_msg += '<BR><<$ind>> Mental Agility'
  157. gs 'indik', '1', pcs_chrsm, pcs_chrsm
  158. $stat_msg += '<BR><<$ind>> Charisma'
  159. gs 'indik', '1', pcs_prcptn, pcs_prcptn
  160. $stat_msg += '<BR><<$ind>> Perception'
  161. if MagikDostup = 0:
  162. gs 'indik', '1', pcs_magik, pcs_magik
  163. $stat_msg += '<BR><<$ind>> Magic'
  164. end
  165. gs 'indik', '1', pcs_apprnc / 2, pcs_apprnc
  166. $stat_msg += '<BR><<$ind>> Attractiveness'
  167. if SchoolAtestat = 0 and StoryLine > 0:
  168. gs 'indik', '1', pcs_grades, pcs_grades
  169. $stat_msg += '<BR><<$ind>> School Grades'
  170. end
  171. if pcs_exhibition > 0:
  172. gs 'indik', '1', pcs_exhibition, pcs_exhibition
  173. $stat_msg += '<BR><<$ind>> exhibitionism'
  174. end
  175. if pcs_heels > 0:
  176. gs 'indik', '1', pcs_heels, pcs_heels
  177. $stat_msg += '<BR><<$ind>> Heels skill'
  178. end
  179. $stat_msg += '<BR>'
  180. end
  181. end
  182. killvar '$st_temp'
  183. !!----------------Mental skills--------------------------
  184. if Enable_show_mental_skill = 0:
  185. $stat_msg += ' <a href="exec:Enable_show_mental_skill = 1 & gs ''$menu_obnovit''">Mental Skills</a>'
  186. end
  187. if Enable_show_mental_skill = 1:
  188. st_count=0
  189. $show_table=''
  190. if pcs_splcstng > 0: gs 'show_table', '<<pcs_splcstng>> Spell Casting', '2'
  191. if pcs_humint > 0: gs 'show_table', '<<pcs_humint>> People skills', '2'
  192. if pcs_persuas > 0: gs 'show_table', '<<pcs_persuas>> Persuasion', '2'
  193. if pcs_observ > 0: gs 'show_table', '<<pcs_observ>> Observation', '2'
  194. if st_count > 0 :$stat_msg += ' <a href="exec:Enable_show_mental_skill = 0 & gs ''$menu_obnovit''">Mental Skills:</a> <TABLE BORDER=1><<$show_table>></TR></TABLE>'
  195. end
  196. !!-----------------Sport skills--------------------------
  197. if Enable_show_sport_skill = 0:
  198. $stat_msg += '<BR> <a href="exec:Enable_show_sport_skill = 1 & gs ''$menu_obnovit''">Sport Skills</a>'
  199. end
  200. if Enable_show_sport_skill = 1:
  201. st_count=0
  202. $show_table=''
  203. if pcs_jab > 0: gs 'show_table', '<<pcs_jab>> Jabs', '2'
  204. if pcs_punch > 0: gs 'show_table', '<<pcs_punch>> Power Strikes', '2'
  205. if pcs_kick > 0: gs 'show_table', '<<pcs_kick>> Kicks', '2'
  206. if pcs_def > 0: gs 'show_table', '<<pcs_def>> Defence', '2'
  207. if pcs_run > 0: gs 'show_table', '<<pcs_run>> Running', '2'
  208. if pcs_vball > 0: gs 'show_table', '<<pcs_vball>> Volleyball', '2'
  209. if pcs_ftbll > 0: gs 'show_table', '<<pcs_ftbll>> Football', '2'
  210. if pcs_wrstlng > 0: gs 'show_table', '<<pcs_wrstlng>> Wrestling', '2'
  211. if pcs_shoot > 0: gs 'show_table', '<<pcs_shoot>> Marksmanship', '2'
  212. if pcs_chess > 0: gs 'show_table', '<<pcs_chess>> Chess', '2'
  213. if pcs_icesktng > 0: gs 'show_table', '<<pcs_icesktng>> Ice Skating', '2'
  214. if pcs_ttgmng > 0: gs 'show_table', '<<pcs_ttgmng>> Gaming', '2'
  215. if st_count > 0 :$stat_msg += '<BR> <a href="exec:Enable_show_sport_skill = 0 & gs ''$menu_obnovit''">Sport Skills:</a> <TABLE BORDER=1><<$show_table>></TR></TABLE>'
  216. end
  217. !!-----------------Beauty/Modelling skills---------------
  218. if Enable_show_beauty_skill = 0:
  219. $stat_msg += '<BR> <a href="exec:Enable_show_beauty_skill = 1 & gs ''$menu_obnovit''">Beauty/Modelling Skills</a>'
  220. end
  221. if Enable_show_beauty_skill = 1:
  222. st_count=0
  223. $show_table=''
  224. if pcs_makupskl > 0: gs 'show_table', '<<pcs_makupskl>> Makeup Skill', '2'
  225. if pcs_danc > 0: gs 'show_table', '<<pcs_danc>> Modern Dancing', '2'
  226. if pcs_dancero > 0: gs 'show_table', '<<pcs_dancero>> Erotic Dancing', '2'
  227. if pcs_dancpol > 0: gs 'show_table', '<<pcs_dancpol>> Pole Dancing', '2'
  228. if pcs_mdlng > 0: gs 'show_table', '<<pcs_mdlng>> Modelling', '2'
  229. if st_count > 0 :$stat_msg += '<BR> <a href="exec:Enable_show_beauty_skill = 0 & gs ''$menu_obnovit''">Beauty/Modelling Skills:</a> <TABLE BORDER=1><<$show_table>></TR></TABLE>'
  230. end
  231. !!---------------------Artistic skills-------------------
  232. if Enable_show_art_skill = 0:
  233. $stat_msg += '<BR> <a href="exec:Enable_show_art_skill = 1 & gs ''$menu_obnovit''">Artistic Skills</a>'
  234. end
  235. if Enable_show_art_skill = 1:
  236. st_count=0
  237. $show_table=''
  238. if pcs_vokal > 0: gs 'show_table', '<<pcs_vokal>> Singing', '2'
  239. if pcs_instrmusic > 0: gs 'show_table', '<<pcs_instrmusic>> Instrumental Music', '2'
  240. if pcs_photoskl > 0: gs 'show_table', '<<pcs_photoskl>> Photography', '2'
  241. if pcs_artskls > 0: gs 'show_table', '<<pcs_artskls>> Artistic Skills', '2'
  242. if st_count > 0 :$stat_msg += '<BR> <a href="exec:Enable_show_art_skill = 0 & gs ''$menu_obnovit''">Artistic Skills:</a> <TABLE BORDER=1><<$show_table>></TR></TABLE>'
  243. end
  244. !!----------------------Job skills------------------------
  245. if Enable_show_job_skill = 0:
  246. $stat_msg += '<BR> <a href="exec:Enable_show_job_skill = 1 & gs ''$menu_obnovit''">Job Skills</a>'
  247. end
  248. if Enable_show_job_skill = 1:
  249. st_count=0
  250. $show_table=''
  251. if pcs_compskl > 0: gs 'show_table', '<<pcs_compskl>> Computer Skill', '2'
  252. if pcs_comphckng > 0: gs 'show_table', '<<pcs_comphckng>> Hacking', '2'
  253. if pcs_hndiwrk > 0: gs 'show_table', '<<pcs_hndiwrk>> Handy-work', '2'
  254. if pcs_sewng > 0: gs 'show_table', '<<pcs_sewng>> Tailoring', '2'
  255. if pcs_servng > 0: gs 'show_table', '<<pcs_servng>> Serving', '2'
  256. if pcs_medcn > 0: gs 'show_table', '<<pcs_medcn>> Medicine', '2'
  257. if workPTU > 1: gs 'show_table','<<teachlevel>> Teacher credibility','2'
  258. if st_count > 0 :$stat_msg += '<BR> <a href="exec:Enable_show_job_skill = 0 & gs ''$menu_obnovit''">Job Skills:</a> <TABLE BORDER=1><<$show_table>></TR></TABLE>'
  259. end
  260. if Enable_showrelation = 0:
  261. $stat_msg += '<BR> <a href="exec:Enable_showrelation = 1 & gs ''$menu_obnovit''">Relations</a>'
  262. end
  263. if Enable_showrelation = 1:
  264. st_count=0
  265. $show_table=''
  266. if npc_QW['A192'] > 0:gs'show_table','Nastja: <<npc_QW[''A192'']>>','2'
  267. if tanya > 0:gs'show_table','Tanya: <<tanya>>','2'
  268. if kat > 0:gs'show_table','Kate: <<kat>>','2'
  269. if vika > 0:gs'show_table','Vika: <<vika>>','2'
  270. if Irina > 0:gs'show_table','Irina: <<Irina>>','2'
  271. if Tamara > 0:gs'show_table','Tamara: <<Tamara>>','2'
  272. if alla > 0:gs'show_table','Alla: <<alla>>','2'
  273. if masha > 0:gs'show_table','Masha: <<masha>>','2'
  274. if Givi > 0:gs'show_table','Givi Karapetovich: <<Givi>>','2'
  275. if Ashot > 0:gs'show_table','Ashot: <<Ashot>>','2'
  276. if Dmitry > 0:gs'show_table','Dima: <<Dmitry>>','2'
  277. if afra > 0:gs'show_table','Blacks: <<afra>>','2'
  278. if npc_rel['A69'] > 0:gs'show_table','Mikhail Nikolaevich: <<npc_rel[''A69'']>>','2'
  279. if npc_rel['A89'] > 0:gs'show_table','Eugene: <<npc_rel[''A89'']>>','2'
  280. if npc_rel['A112'] > 0:gs'show_table','Sergei Shulgin: <<npc_rel[''A112'']>>','2'
  281. if npc_rel['A11'] > 0:gs'show_table','Vasily Shulgin: <<npc_rel[''A11'']>>','2'
  282. if hantersAndreiQw > 0:gs'show_table','Hunter Andrew: <<hantersAndreiQw>>','2'
  283. if hantersSergeiQw > 0:gs'show_table','Hunter Sergei: <<hantersSergeiQw>>','2'
  284. if hantersIgorQw > 0:gs'show_table','Hunter Igor: <<hantersIgorQw>>','2'
  285. if pcs_lovers[1] = 1:gs'show_table', 'BF <<$loverdesc[1]>>: <<loverrelation[1]>>','2'
  286. if pcs_lovers[2] = 1:gs'show_table', 'BF <<$loverdesc[2]>>: <<loverrelation[2]>>','2'
  287. if pcs_lovers[3] = 1:gs'show_table', 'BF <<$loverdesc[3]>>: <<loverrelation[3]>>','2'
  288. if StoryLine > 0:
  289. if npc_rel['A29'] > 0:gs'show_table','Mother: <<npc_rel[''A29'']>>','2'
  290. if npc_rel['A28'] > 0:gs'show_table','Father: <<npc_rel[''A28'']>>','2'
  291. if npc_rel['A33'] > 0:gs'show_table','Sister: <<npc_rel[''A33'']>>','2'
  292. if npc_rel['A34'] > 0:gs'show_table','Brother: <<npc_rel[''A34'']>>','2'
  293. end
  294. if st_count > 0 :$stat_msg += '<BR> <a href="exec:Enable_showrelation = 0 & gs ''$menu_obnovit''">Relations:</a> <BR><TABLE BORDER=1> <<$show_table>></TR></TABLE>'
  295. end
  296. $stat_msg += '<BR>'
  297. if BuyHous = 2 and ArendHouseSL <= 0:'<font color="red"><b>The rent on your apartment is due today.</b></font>'
  298. if BuyHous = 2 and ArendHouseSL <= 0:
  299. '<font color="red"><b>The rent on your apartment is due today.</b></font>'
  300. if money >= 6000 or stolmoney >= 6000 or money + stolmoney >= 6000 or karta + bankDebtLimit >= 6000:
  301. *P ' Renew with '
  302. if money >= 6000:
  303. *P ' <a href="exec:money -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash</a>'
  304. elseif stolmoney >= 6000:
  305. *P ' <a href="exec:stolmoney -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash from drawer</a>'
  306. elseif money + stolmoney >= 6000:
  307. !both < 6000, so money = money - 6000 + stolmoney
  308. *P ' <a href="exec:money -= 6000 - stolmoney & stolmoney = 0 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash from purse and drawer</a>'
  309. end
  310. !from purse, drawer or both
  311. if karta >= 6000:
  312. *P ' <a href="exec:karta -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30 & gs ''$menu_obnovit''">bank account</a>'
  313. elseif karta + bankDebtLimit >= 6000:
  314. *P ' <a href="exec:karta -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30 & gs ''$menu_obnovit''">bank account, but you will be overdrawn.</a>'
  315. end
  316. else
  317. *P ' But you can''t afford to pay the rent.'
  318. end
  319. end
  320. if opPRE = 0: $stat_msg += '<BR><<$pcs_makeup>> and your hair is <<$pcs_hairbsh>>.' & $stat_msg += '<BR>'
  321. if thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon2 <= 30000 and succubusflag ! 1 and cheatSlut = 0 and mesec = 0:
  322. if abortionbirthdate = 0 and daystart - lastmens > 21:
  323. if daystart - lastmens < 28:
  324. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by <<daystart - lastmens - 20>> days.</b></font>'
  325. elseif daystart - lastmens < 35:
  326. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by more than a week!</b></font>'
  327. elseif daystart - lastmens < 45:
  328. $stat_msg += '<BR><font color = #AB052A><b>You apparently missed your period this month. Maybe you should see a doctor?</b></font>'
  329. elseif daystart - lastmens < 69:
  330. $stat_msg += '<BR><font color = #AB052A><b>You didn''t have a period for two months. You really should see a doctor about it.</b></font>'
  331. else
  332. $stat_msg += '<BR><font color = #AB052A><b>You should consider the possibility of a pregnancy, since apparently you no longer have periods.</b></font>'
  333. end
  334. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate <= 100:
  335. $stat_msg += '<BR><font color = #705243><b>You are probably still in your recovery period. Nothing to worry about.</b></font>'
  336. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate > 100:
  337. $stat_msg += '<BR><font color = #820000><b>You should have recovered by know... Right?</b></font>'
  338. end
  339. end
  340. if implant_day > 0:
  341. if ((daystart - implant_day) * 24 + hour - implant_hour) < 5:
  342. $stat_msg += '<BR><font color=#AB052A>You feel a slight twinge in your abdomen.</font>'
  343. end
  344. end
  345. if mesec > 0:
  346. $stat_msg += '<BR><font color="red">You are currently having your period. '
  347. if isprok = 0 and isprokp = 0:
  348. $stat_msg += 'You need to use your feminine hygiene products.'
  349. elseif isprokp = 1 and tanga = 0:
  350. isprokp = 0
  351. $stat_msg += 'You need to wear panties to use a sanitary pad.'
  352. end
  353. $stat_msg += '</font>'
  354. end
  355. $stat_msg += '<BR><a href="exec:dynamic $d_cycreport_choice"><<$cycreport_txt>></a><br>'
  356. if StoryLine > 0 and SchoolAtestat = 0 and $holyday ! '': $stat_msg += '<BR><<$holyday>>' & $stat_msg += '<BR>'
  357. if birthday = day and birthmonth = month: $stat_msg += '<BR><b>Today is your birthday.</b>' & $stat_msg += '<BR>'
  358. !!if shame > 0:$stat_msg += '<BR><<$shame>>' & $stat_msg += '<BR>'
  359. if $pcs_mood ! '':$stat_msg += '<BR><font color="green"><b><<$pcs_mood>></b></font>' & $stat_msg += '<BR>'
  360. if mentats_dose >= 1:$stat_msg += '<BR><font color = green>You feel sharp and focused.</font>'
  361. if bcream_used = 1:$stat_msg += '<BR><font color = #DB7093>Your breasts are feeling hot and tingly.</font>'
  362. if aphrodisiac_timer > 0:$stat_msg += '<BR><font color = #DB7093>You are feeling hot and every move causes your groin to tingle.</font>'
  363. if pcs_energy < 5:
  364. $stat_msg += '<BR><font color="red">You feel faint from hunger, if you don''t have something to eat very soon, you will pass out.</font>'
  365. elseif pcs_energy < 10:
  366. $stat_msg += '<BR><font color="red">You are starving, you really need to have something to eat.</font>'
  367. elseif pcs_energy < 20:
  368. $stat_msg += '<BR>You are very hungry and struggle to concentrate on anything other than food.'
  369. elseif pcs_energy < 30:
  370. $stat_msg += '<BR>You feel peckish and your thoughts sometimes drift towards food.'
  371. end
  372. if pcs_sleep < 5:
  373. $stat_msg += '<BR><font color="red">You can''t keep your eyes open, if you don''t go to bed now, you will fall asleep right here.</font>'
  374. elseif pcs_sleep < 10:
  375. $stat_msg += '<BR><font color="red">You are exhausted, you really need to go to bed soon.</font>'
  376. elseif pcs_sleep < 20:
  377. $stat_msg += '<BR>You are tired and you are struggling to concentrate.'
  378. elseif pcs_sleep < 30:
  379. $stat_msg += '<BR>You feel a little tired.'
  380. end
  381. if tanga = 1 and clit_size >= 25:$stat_msg += '<BR><font color = #FF1493>Your panties keep rubbing against your clit and making you horny.</font>'
  382. if pcs_horny >= 50:
  383. if pcs_horny < 90 and tanga = 1:
  384. $stat_msg += '<BR><font color = #DB7093>You are a little nervous, feeling nice between your legs <a href="exec:view''images/pc/body/pussy/briefs1.jpg''">itchy</a> from arousal.</font>'
  385. elseif pcs_horny < 90 and tanga = 0:
  386. $stat_msg += '<BR><font color = #DB7093>You are a little nervous, feeling nice between your legs <a href="exec:view''images/pc/body/pussy/briefs1a.jpg''">itchy</a> from arousal.</font>'
  387. elseif tanga = 1:
  388. $stat_msg += '<BR><font color = #FF1493>You can''t stop thinking about sex, between your legs you are <a href="exec:view''images/pc/body/pussy/briefs2.jpg''">soaked</a> from your juices.</font>'
  389. else
  390. $stat_msg += '<BR><font color = #FF1493>You can''t stop thinking about sex, between your legs you are <a href="exec:view''images/pc/body/pussy/briefs2a.jpg''">soaked</a> from your juices.</font>'
  391. end
  392. end
  393. if PillToggle = 1 and tabletki > 0:
  394. Stabletki += tabletki
  395. tabletki = 0
  396. elseif PillToggle = 0 and Stabletki > 0:
  397. tabletki += Stabletki
  398. Stabletki = 0
  399. end
  400. if CondomToggle = 1 and prezik > 0:
  401. Sprezik += prezik
  402. prezik = 0
  403. elseif CondomToggle = 0 and Sprezik > 0:
  404. prezik += Sprezik
  405. Sprezik = 0
  406. end
  407. if smoker >= 20:
  408. if smokerNeed > 0:
  409. if siga > 0:
  410. $stat_msg += '<BR><a href="exec:gs ''shortgs'',''smoker''"><font color="red"><b>You want to smoke. You have <<siga>> cigarettes left.</b></font></a><BR>'
  411. else
  412. $stat_msg += '<BR><a href="exec:gs ''shortgs'',''smoker''"><font color="red"><b>You want to smoke, but you have no cigarettes left.</b></font></a><BR>'
  413. end
  414. else
  415. if siga > 0:
  416. $stat_msg += '<BR><a href="exec:gs ''shortgs'',''smoker''"><font color="blue"><b>You have <<siga>> cigarettes left.</b></font></a><BR>'
  417. else
  418. $stat_msg += '<BR><font color="blue"><b>You feel like you should get some cigarettes.</b></font><BR>'
  419. end
  420. end
  421. elseif siga > 0:
  422. $stat_msg += '<BR><a href="exec:gs ''shortgs'',''smoker''"><font color = blue><b>You have <<siga>> cigarettes.</b></font></a><BR>'
  423. end
  424. if smokeHour = hour and smokeday = day and smokeminut >= minut:$stat_msg += '<BR><font color="green">You are smoking a cigarette.</font><BR>'
  425. if pcs_sweat < 0 : pcs_sweat = 0
  426. if pcs_sweat > 69 : pcs_sweat = 69
  427. jump 'statDswt<<pcs_sweat/10>>'
  428. :statDswt0
  429. if arrsize('sparrvol') = 0 : $stat_msg += '<BR><b><font color="green">You are sparkling clean.</font></b><BR>'
  430. jump 'statDswtEnd'
  431. :statDswt1
  432. jump 'statDswtEnd'
  433. :statDswt2
  434. $stat_msg += '<BR><font color="brown">You''re sweating.</font><BR>'
  435. jump 'statDswtEnd'
  436. :statDswt3
  437. $stat_msg += '<BR><font color="red">You are a little smelly.</font><BR>'
  438. jump 'statDswtEnd'
  439. :statDswt4
  440. $stat_msg += '<BR><font color="red">You stink.</font><BR>'
  441. jump 'statDswtEnd'
  442. :statDswt5
  443. $stat_msg += '<BR><b><font color="red">You really stink.</font></b><BR>'
  444. jump 'statDswtEnd'
  445. :statDswt6
  446. $stat_msg += '<BR><b><font color="red">You are dripping wet from sweat and smell like a gym sock.</font></b><BR>'
  447. jump 'statDswtEnd'
  448. :statDswtEnd
  449. if dirtyclothes = 1 and swamp_clothes = 0:
  450. if pcs_sweat > 40:
  451. $stat_msg +='<br><font color = red>You from head to toe <a href="exec:view''images/locations/gadukino/hunters/dirtyclothes1.jpg''">smeared</a> in the mud.</font><BR>'
  452. else
  453. $stat_msg +='<br><font color = red>Your <a href="exec:view''images/locations/gadukino/hunters/dirtyclothes2.jpg''">cloth</a> is dirty.</font><BR>'
  454. end
  455. end
  456. if lactate = 1:
  457. if lactatemv >= lactatemm-1:
  458. $stat_msg += '<BR><font color = black>Your breasts are so full they hurt and a little milk is constantly dribbling out.</font><BR>'
  459. elseif lactatemv > lactatemm*9/10:
  460. $stat_msg += '<BR><font color = black>Your breasts are firm and full, and starting to hurt from all the milk they contain.</font><BR>'
  461. elseif lactatemv > lactatemm*3/4:
  462. $stat_msg += '<BR><font color = black>Your breasts feel firm and heavy, full of milk.</font><BR>'
  463. elseif lactatemv > lactatemm/2:
  464. $stat_msg += '<BR><font color = black>Your breasts are heavy, a cargo of milk inside.</font><BR>'
  465. elseif lactatemv > lactatemm/4:
  466. $stat_msg += '<BR><font color = black>Your breasts feel a little heavy.</font><BR>'
  467. elseif lactatemv > 0:
  468. $stat_msg += '<BR><font color = black>Your breasts tingle a little from the feeling of milk production.</font><BR>'
  469. else
  470. $stat_msg += '<BR><font color = black>Your breasts feel soft and empty.</font><BR>'
  471. end
  472. end
  473. if Enable_Hymenrestore = 1: pcs_vag = 0
  474. if Enable_tightrestore = 1: pcs_ass = 0 & if pcs_vag > 0:pcs_vag = 1
  475. if Enable_clearwrite > 0: body_write = 0 & face_write = 0
  476. if Enable_clearcum > 0:
  477. killvar 'sparrvol[0]'
  478. end
  479. if Enable_fbreath > 0:
  480. cumspclnt = 2
  481. gs 'cum_cleanup'
  482. pcs_breath=1
  483. end
  484. $clear_write = {
  485. body_write = 0
  486. face_write = 0
  487. minut += 10
  488. gs '$menu_obnovit'
  489. 'It takes you 10 minutes to thoroughly wash the obscene "painting" from your body.'
  490. }
  491. if body_write > 0 or face_write > 0:
  492. if body_write > 1 and face_write = 0:
  493. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body is inscribed with derogatory graffiti.</font></b></a>'
  494. elseif body_write = 1 and face_write = 0:
  495. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body is an obscene sign.</font></b></a>'
  496. elseif body_write = 0 and face_write > 1:
  497. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your face is covered with writing obscene epithets.</font></b></a>'
  498. elseif body_write = 0 and face_write = 1:
  499. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>On your face humiliating label.</font></b></a>'
  500. else
  501. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body and face painted with obscene graffiti.</font></b></a>'
  502. end
  503. end
  504. killvar 'cumvolume'
  505. killvar 'i'
  506. killvar 'knownguy'
  507. killvar 'cumcount'
  508. killvar 'cumowner'
  509. if arrsize('sparrvol') > 0:
  510. !!go through every location
  511. :locationloop
  512. !!start from the freshest load
  513. idx = arrsize('sparrloc')-1
  514. :spermitemloop
  515. !!if the currently examined load loaction is the location of the current cycle, execute
  516. if sparrloc[idx] = i:
  517. !!setting the age of the current load
  518. !! 0: mouth
  519. !! 1: in this hour
  520. !! 2: in four hours
  521. !! 3: at least five hours ago
  522. !! 4: in body (pussy or ass)
  523. !! 5: no more than 12 hours in condom
  524. !! 6: no more than 48 hours in condom
  525. !! 7: more than two days old, in condom
  526. if i = 12:
  527. j = 0
  528. elseif i = 17:
  529. if sparrage[idx] <= 12:
  530. j = 5
  531. elseif sparrage[idx] <= 48:
  532. j = 6
  533. else
  534. j = 7
  535. end
  536. elseif i = 0 or i = 3:
  537. j = 4
  538. else
  539. if sparrage[idx] <= 1:
  540. j = 1
  541. elseif sparrage[idx] <= 5:
  542. j = 2
  543. else
  544. j = 3
  545. end
  546. end
  547. cumvolume['<<i>>:<<j>>'] += sparrvol[idx]
  548. if sparrvol[idx] > 0:
  549. if sparridt[idx] = 0:
  550. !!unknown partner
  551. cumcount['<<i>>:<<j>>'] += 1
  552. elseif sparridt[idx] = 1:
  553. !!known partner
  554. !!storing the name of the cum owner (format: $cumowner[<cum location>:<age of cum>:<index of cum owner>])
  555. if knownguy['<<i>>:<<j>>'] > 0:
  556. gchk = 0
  557. :sameguycheck
  558. if $cumowner['<<i>>:<<j>>:<<gchk>>'] ! $sparrnam[idx] and gchk <= knownguy['<<i>>:<<j>>']:gchk += 1 & jump 'sameguycheck'
  559. if gchk > knownguy['<<i>>:<<j>>']:
  560. $cumowner['<<i>>:<<j>>:<<knownguy[''<<i>>:<<j>>'']>>'] = $sparrnam[idx]
  561. knownguy['<<i>>:<<j>>'] += 1
  562. cumcount['<<i>>:<<j>>'] += 1
  563. end
  564. else
  565. $cumowner['<<i>>:<<j>>:<<knownguy[''<<i>>:<<j>>'']>>'] = $sparrnam[idx]
  566. knownguy['<<i>>:<<j>>'] += 1
  567. cumcount['<<i>>:<<j>>'] += 1
  568. end
  569. end
  570. end
  571. end
  572. if idx > 0:idx -= 1 & jump 'spermitemloop'
  573. if i < 18:i += 1 & jump 'locationloop'
  574. killvar 'i'
  575. killvar 'idx'
  576. killvar 'j'
  577. end
  578. i = 0
  579. :cumlocloop
  580. if i = 0:
  581. $txtloc = 'your <a href="exec:view''images/pc/body/cum/creampie/cumpussy'+rand(1,14)+'.jpg''">pussy</a>'
  582. elseif i = 1:
  583. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumpussy/cumpus'+rand(1,4)+'.jpg''">labia</a>'
  584. elseif i = 2:
  585. $txtloc = 'the front of your panties'
  586. elseif i = 3:
  587. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumanal/cumanal'+rand(1,11)+'.jpg''">ass</a>'
  588. elseif i = 4:
  589. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumass/cumass'+rand(1,6)+'.jpg''">butt</a>'
  590. elseif i = 5:
  591. $txtloc = 'the back of your panties'
  592. elseif i = 6:
  593. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumclothes/'+rand(1,3)+'.jpg''">clothes near your groin</a>'
  594. elseif i = 7:
  595. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumclothes/cumclothes'+rand(1,21)+'.jpg''">clothes</a>'
  596. elseif i = 8:
  597. $txtloc = 'your back'
  598. elseif i = 9:
  599. $txtloc = 'your legs'
  600. elseif i = 10:
  601. $txtloc = 'your arms'
  602. elseif i = 11:
  603. if pcs_haircol = 0:
  604. $cum_face_image = 'brown/'
  605. $cum_face_image += rand(1, 31)
  606. elseif pcs_haircol = 1:
  607. $cum_face_image = 'black/'
  608. $cum_face_image += rand(1, 23)
  609. elseif pcs_haircol = 2:
  610. $cum_face_image = 'red/'
  611. $cum_face_image += rand(1, 19)
  612. elseif pcs_haircol = 3:
  613. $cum_face_image = 'blonde/'
  614. $cum_face_image += rand(1, 25)
  615. elseif pcs_haircol > 3:
  616. $cum_face_image = 'custom/'
  617. $cum_face_image += rand(1, 20)
  618. end
  619. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumface/<<$cum_face_image>>.jpg''">face</a>'
  620. killvar 'cum_face_image'
  621. elseif i = 13:
  622. $txtloc = 'your hands'
  623. elseif i = 14:
  624. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumbelly/cumbelly'+rand(1,12)+'.jpg''">stomach</a>'
  625. elseif i = 15:
  626. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumtits/cumtits'+rand(1,19)+'.jpg''">breasts</a>'
  627. elseif i = 16:
  628. $txtloc = 'your hair</a>'
  629. elseif i = 17:
  630. $txtloc = 'in your vagina in a slipped condom'
  631. else
  632. $txtloc = 'the gusset of your panties</a>'
  633. end
  634. j = 0
  635. :ageloop
  636. if cumvolume['<<i>>:<<j>>'] > 0:
  637. cumloc[i] = 1
  638. !!amount setting
  639. if cumvolume['<<i>>:<<j>>'] > 250:
  640. !! 25 ml, about four-five load, gushing
  641. $txtamount = 'Enormous '
  642. elseif cumvolume['<<i>>:<<j>>'] > 100:
  643. !! 10 ml, about two load, flowing
  644. $txtamount = 'Huge '
  645. elseif cumvolume['<<i>>:<<j>>'] >= 20:
  646. !! 2 ml, seeping out
  647. $txtamount = 'Decent '
  648. else
  649. !! residue amount, no leakage
  650. $txtamount = 'Small '
  651. end
  652. !! if sperm age stage is 4, it means inside the body
  653. if j = 4:
  654. if (vibratorIN = 1 and i = 0) or (analplugin = 1 and i = 3):
  655. $txtproxy = 'being plugged in '
  656. elseif i = 0 and cumvolume['<<i>>:<<j>>'] < pcs_vag*5:
  657. $txtproxy = 'staying inside of '
  658. elseif i = 3 and pcs_ass <= 25:
  659. $txtproxy = 'staying inside of '
  660. else
  661. if cumvolume['<<i>>:<<j>>'] > 250:
  662. $txtproxy = 'gushing out of '
  663. elseif cumvolume['<<i>>:<<j>>'] > 100:
  664. $txtproxy = 'flowing out of '
  665. elseif cumvolume['<<i>>:<<j>>'] >= 40:
  666. $txtproxy = 'seeping out of '
  667. else
  668. $txtproxy = 'staying inside of '
  669. end
  670. end
  671. elseif j >= 5:
  672. !! if sperm age stage is over 4, meaning in condom
  673. if j = 5:
  674. $txtproxy = 'buried '
  675. elseif j = 6:
  676. $txtproxy = 'marinating '
  677. else
  678. $txtproxy = 'rotting '
  679. end
  680. if cumcondslip_deep > (vagina / 2): $txtproxy += 'deep '
  681. elseif j < 4 and j > 0:
  682. !!amount setting
  683. if cumvolume['<<i>>:<<j>>'] > 160:
  684. !! 10 ml, about two load, flowing
  685. $txtproxy = 'coating '
  686. elseif cumvolume['<<i>>:<<j>>'] > 40:
  687. !! 2 ml, seeping out
  688. $txtproxy = 'covering '
  689. else
  690. !! residue amount, no leakage
  691. $txtproxy = 'spattering '
  692. end
  693. if j = 1:
  694. $txtproxy += 'wetly '
  695. elseif j = 2:
  696. $txtproxy += 'dryly '
  697. else
  698. $txtproxy += 'powderly '
  699. end
  700. end
  701. $txtperson = ''
  702. if cumcount['<<i>>:<<j>>'] = 0:
  703. $txtiscum = 'some whitish substance '
  704. else
  705. $txtiscum = 'cum'
  706. if cumcount['<<i>>:<<j>>'] = knownguy['<<i>>:<<j>>']:
  707. !! everyone is known (one or more)
  708. if knownguy['<<i>>:<<j>>'] = 1:
  709. $txtperson = $npc_usedname[$cumowner['<<i>>:<<j>>:0']] + ' '
  710. else
  711. kmax = 0
  712. :nullocator1
  713. if $cumowner['<<i>>:<<j>>:<<kmax>>'] ! '':kmax += 1 & jump 'nullocator1'
  714. kmax -= 1
  715. k = 0
  716. :knownloop
  717. $txtperson += $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']]
  718. if k < kmax-1:$txtperson += ', ' & k += 1 & jump 'knownloop'
  719. k += 1
  720. $txtperson += ' and ' + $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']] + ' '
  721. end
  722. elseif knownguy['<<i>>:<<j>>'] = 0:
  723. !! noone is known (one or more)
  724. if cumcount['<<i>>:<<j>>'] = 1:
  725. $txtperson += 'some guy '
  726. else
  727. $txtperson += 'some guys '
  728. end
  729. else
  730. !! there are known and unknown guys in the mix
  731. if knownguy['<<i>>:<<j>>'] = 1:
  732. $txtperson = $npc_usedname[$cumowner['<<i>>:<<j>>:0']] + ' and some guy'
  733. else
  734. kmax = 0
  735. :nullocator2
  736. if $cumowner['<<i>>:<<j>>:<<kmax>>'] ! '':kmax += 1 & jump 'nullocator2'
  737. kmax -= 1
  738. k = 0
  739. :mixloop
  740. $txtperson += $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']] + ', '
  741. if k < kmax: k += 1 & jump 'mixloop'
  742. $txtperson += 'and some guy'
  743. end
  744. if cumcount['<<i>>:<<j>>'] - knownguy['<<i>>:<<j>>'] > 1:
  745. $txtperson += 's '
  746. else
  747. $txtperson += ' '
  748. end
  749. end
  750. end
  751. if j <= 4 and swallow >= 10 and $txtiscum = 'cum':$txtiscum = '<a href="exec:gs ''cum_manage'', ''cumeater'', <<i>>"><font color="blue">' + $txtiscum + '</font></a>'
  752. $txtiscum += ' from '
  753. if i = 0 and j = 4 and vibratorIN = 0 and pcs_vag*10 < cumvolume['<<i>>:<<j>>'] and cumvolume['<<i>>:<<j>>'] >= 20:
  754. if tanga = 1:
  755. $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + ' into your panties.</font></b>'
  756. else
  757. $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + ' down your legs.</font></b>'
  758. end
  759. elseif sparragestage >= 5:
  760. if cumcondslip_aware > 0:$stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + '.</font></b>'
  761. elseif j ! 0:
  762. $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + '.</font></b>'
  763. else
  764. $stat_msg += '<BR><b><font color="red">Your breath smells like sperm.</font></b>'
  765. end
  766. end
  767. if j < 7: j+=1 & jump 'ageloop'
  768. if i < 18: i+=1 & jump 'cumlocloop'
  769. killvar 'i'
  770. killvar 'j'
  771. killvar 'txtperson'
  772. killvar 'k'
  773. killvar 'kmax'
  774. killvar 'txtamount'
  775. killvar 'txtiscum'
  776. killvar 'txtperson'
  777. killvar 'txtproxy'
  778. killvar 'txtloc'
  779. killvar 'cumvolume'
  780. killvar 'cumcount'
  781. killvar 'knownguy'
  782. killvar 'cumowner'
  783. if $clothingworntype = 'nude' and lactatemess > 0:
  784. if lactatemess < 3:
  785. $stat_msg += '<BR><font color = black>You have a little milk residue around your nipples.</font>'
  786. elseif lactatemess < 7:
  787. $stat_msg += '<BR><font color = black>You have a lot of milk residue around your nipples.</font>'
  788. else
  789. $stat_msg += '<BR><font color = black>Your breasts are drenched with milk residue.</font>'
  790. end
  791. elseif lactatemess > 0:
  792. if lactatemess < 3:
  793. $stat_msg += '<BR><font color = black>You have tiny wet spots on your clothes above your nipples.</font>'
  794. elseif lactatemess < 7:
  795. $stat_msg += '<BR><font color = black>Milk has soaked through your clothes and made visible circles on your breasts.</font>'
  796. else
  797. $stat_msg += '<BR><font color = black>Your shirt is drenched with milk from your breasts.</font>'
  798. end
  799. end
  800. if Gerpes >= 10:
  801. $stat_msg += '<BR><b><font color="red">On your pussy sores have appeared. This is genital herpes.</font></b>'
  802. elseif Gerpes >= 5:
  803. $stat_msg += '<BR><b><font color="red">Your pussy is flushed and highly itchy. This is genital herpes.</font></b>'
  804. elseif Gerpes >= 3:
  805. $stat_msg += '<BR><b><font color="red">On your lips sores. All signs of genital herpes.</font></b>'
  806. end
  807. if Gerpes >= 20:$stat_msg += '<BR> <b><font color="red">The sores also cover your ass.</font></b>'
  808. if Sifilis >= 50:
  809. $stat_msg += '<BR><b><font color="red">Syphilitic rashes cover your whole body.</font></b>'
  810. elseif Sifilis >= 21:
  811. $stat_msg += '<BR><b><font color="red">You have a single big, hard sore on the lip.</font></b>'
  812. end
  813. if Triper > 2:$stat_msg += '<BR><b><font color="red">From your vagina a white discharge comes out strong and stinging when urinating. Also from your vagina there''s a hard and nasty smell.</font></b>'
  814. if Kandidoz > 30:$stat_msg += '<BR><b><font color="red">You have thrush.</font></b>'
  815. if SLomka > 0:$stat_msg += '<BR><b><font color="red">You are very weak and hurt to the bone. You''re in withdrawal.</font></b>'
  816. if narkday ! daystart and narkoman = 1:$stat_msg += '<BR><b><font color="red">You are very weak and hurt to the bone. Urgently need pale lady.</font></b>'
  817. if fingal > 0:$stat_msg += '<BR><b><font color="red">You have a black eye.</font></b>'
  818. ! WD: Bimbo look
  819. if bimbolevel > 0: $stat_msg += '<BR><<$bimbostatus>>'
  820. if tanga = 1 and $clothingworntype = 'nude':
  821. $stat_msg += '<BR><b><font color = red>You are only wearing your panties and your boobs sway invitingly as you walk</font></b>'
  822. elseif tanga= 1 and PCloBimbo = 1:
  823. $stat_msg += '<BR><b><font color = #FF00FF>You are dressed as a bimbo</font></b>'
  824. elseif tanga = 0:
  825. if CloStyle = 4:
  826. $stat_msg += '<BR><b><font color="red">you are not wearing panties, but you are dressed as a hooker, so that''s hardly surprising.</font></b>'
  827. elseif PCloBimbo = 1 or bimbolevel > 0 and PCloSkirt > 3:
  828. $stat_msg += '<BR><b><font color = #FF00FF>You like, totally forgot to put on any panties. You are such a bimbo.</font></b>'
  829. elseif PCloSkirt > 3:
  830. $stat_msg += '<BR><b><font color="red">Your face is flushed with shame, you are not wearing panties and your naked ass flashes from under your short skirt.</font></b>'
  831. elseif $clothingworntype ! 'nude':
  832. $stat_msg += '<BR><b><font color="red">You are not wearing panties.</font></b>'
  833. elseif towel = 1:
  834. $stat_msg += '<BR><b><font color = red>Your naked body is covered only by a short towel.</font></b>'
  835. elseif $clothingworntype = 'nude' and pcs_exhibition < 5:
  836. $stat_msg += '<BR><b><font color = red>You are completely naked, and it makes you feel nervous and ashamed.</font></b>'
  837. elseif $clothingworntype = 'nude' and pcs_exhibition < 20:
  838. $stat_msg += '<BR><b><font color = red>You are completely naked, you''re not too comfortable we nudity but it is a little exciting.</font></b>'
  839. elseif $clothingworntype = 'nude' and pcs_exhibition >= 90:
  840. $stat_msg += '<BR><b><font color = blue>You are completely naked, which is far better than having to wear clothes.</font></b>'
  841. elseif $clothingworntype = 'nude':
  842. $stat_msg += '<BR><b><font color = #FF00FF>You are completely naked. It''s exciting and you feel tingly inside.</font></b>'
  843. end
  844. end
  845. $stat_msg += '<BR>'
  846. if mosol >= 50:
  847. $stat_msg += '<BR><b><font color="red">Your pussy hurts and each step causes more pain, it''s crimson and visibly scuffed from walking without underwear.</font></b>'
  848. elseif mosol >= 30:
  849. $stat_msg += '<BR><b><font color="red">Your pussy is flushed and itchy, it seems to be from rubbing against your clothing.</font></b>'
  850. end
  851. if analplugIN = 1:$stat_msg += '<BR><b><font color="red">You have a butt plug inserted in your ass.</font></b>'
  852. if vibratorin = 1:$stat_msg += '<BR><b><font color="red">You have a vibrator inserted in your vagina.</font></b>'
  853. $stat_msg += '<BR>'
  854. if young_shop_work = 1:
  855. if hour = 15 and minut <= 5 and week < 6 and inWorkYoungShop = 0:
  856. 'You are late for work at Pussy-Cats.'
  857. elseif hour = 15 and week < 6 and inWorkYoungShop = 0 and misscheck ! daystart:
  858. misscheck = daystart
  859. young_shop_miss += 1
  860. $stat_msg += '<BR><b><font color="red">You missed work.</font></b>'
  861. elseif (hour = 14 or hour = 13) and week < 6:
  862. $stat_msg += '<BR><b><font color="red">By 15:00 you have to be at work in the shop Pussy-Cats.</font></b>'
  863. end
  864. end
  865. if workrin = 1:
  866. if week = 2 or week = 4 or week = 6:
  867. if hour = 7:$stat_msg += '<BR><b><font color="red">At 8 c''clock you start work on the market.</font></b>'
  868. if hour = 8:$stat_msg += '<BR><b><font color="red">You need to work on the market now.</font></b>'
  869. end
  870. end
  871. if frost > 0:
  872. if frost <= 5:
  873. $stat_msg += '<BR><b><font>You are a little chilly.</font></b>'
  874. elseif frost < 11:
  875. $stat_msg += '<BR><b><font color="red">You are cold.</font></b>'
  876. else
  877. $stat_msg += '<BR><b><font color="red">You are freezing.</font></b>'
  878. end
  879. end
  880. if sick > 0:
  881. if sick = 1:
  882. $stat_msg += '<BR><b><font color="red">This is not good, a tickle in the throat and a little runny nose.</font></b>'
  883. elseif sick < 24:
  884. $stat_msg += '<BR><b><font color="red">You have chills. You nose is running and throat is raw, you cough and sneeze - it looks like you got a cold.</font></b>'
  885. elseif sick < 48:
  886. $stat_msg += '<BR><b><font color="red">You have a fever. Your nose is clogged, it hurts to swallow - throat aches. You continually cough and sneeze - it looks like your cold is pretty bad.</font></b>'
  887. elseif sick < 72:
  888. $stat_msg += '<BR><b><font color="red">You have a high fever. You have a stuffy nose, sore head and throat, your coughing badly - it looks like you got a strong cold. Maybe it''s the flu.</font></b>'
  889. else
  890. $stat_msg += '<BR><b><font color="red">You toss in the heat. You have a stuffy nose, headache and ache to the bone. Your throat is inflamed and very sore. You think you''re going to cough up a lung - it looks like you are seriously ill, or maybe it''s just a sore throat.</font></b>'
  891. end
  892. end
  893. if hypnoAddict > 0:
  894. if hypnoWithdrawal = 1:
  895. if missCum >= timeTresh:
  896. $stat_msg += '<BR><b><font color="red">You really miss the feeling of sperm in your body, you are strangely craving it. You should talk to your therapist about it.</font></b>'
  897. else
  898. $stat_msg += '<BR><b><font color="red">You feel like talking to your therapist. You miss your sessions.</font></b>'
  899. end
  900. elseif hypnoWithdrawal = 2:
  901. if missCum >= timeTresh:
  902. $stat_msg += '<BR><b><font color="red">You want some sperm inside of you NOW! You have to talk to your therapist, immediately.</font></b>'
  903. else
  904. $stat_msg += '<BR><b><font color="red">You need to talk to your therapist. You feel unbalanced without your sessions.</font></b>'
  905. end
  906. else
  907. if missCum >= timeTresh:$stat_msg += '<BR><b><font color="magenta">You miss the feeling of sperm in your body and you feel moody.</font></b>'
  908. end
  909. end
  910. if $mudnerd ! '':$stat_msg += '<BR><<$mudnerd>>'
  911. if housr = 1:
  912. $streetev_home = 'your apartment'
  913. elseif tanwork = 1:
  914. $streetev_home = 'Tanya''s apartment'
  915. elseif student > 0:
  916. $streetev_home = 'your dorm'
  917. elseif ParHomeBlock = 0 and storyline = 1:
  918. $streetev_home = 'outside your apartment block'
  919. else
  920. $streetev_home = 'the train station'
  921. end
  922. if hour < meethourA and svidanieA = 1:$stat_msg += '<BR><<$loverdesc[1]>> will be waiting for you near <<$streetev_home>> at <<meethourA>>:00.'
  923. if hour = meethourA and svidanieA = 1:$stat_msg += '<BR><b><font color="red"><<$loverdesc[1]>> is waiting for you by <<$streetev_home>>.</font></b>'
  924. if meetdayA < daystart and svidanieA = 1:pcs_lovers_rel[1] -= 10 & svidanieA = 0
  925. if hour < meethourB and svidanieB = 1:$stat_msg += '<BR><<$loverdesc[2]>> will be waiting for you near <<$streetev_home>> at <<meethourB>>:00.'
  926. if hour = meethourB and svidanieB = 1:$stat_msg += '<BR><b><font color="red"><<$loverdesc[2]>> is waiting for you by <<$streetev_home>>.</font></b>'
  927. if meetdayB < daystart and svidanieB = 1:pcs_lovers_rel[2] -= 10 & svidanieB = 0
  928. if hour < meethourC and svidanieC = 1:$stat_msg += '<BR><<$loverdesc[3]>> will be waiting for you near <<$streetev_home>> at <<meethourC>>:00.'
  929. if hour = meethourC and svidanieC = 1:$stat_msg += '<BR><b><font color="red"><<$loverdesc[3]>> is waiting for you by <<$streetev_home>>.</font></b>'
  930. if meetdayC < daystart and svidanieC = 1:pcs_lovers_rel[3] -= 10 & svidanieC = 0
  931. if StrongNarkota > 20:$stat_msg += '<BR><b><font color="red">You are stoned.</font></b>'
  932. if alko > 0:
  933. if alko < 3:$stat_msg += '<BR><b><font color="red">You''re a little dizzy.</font></b>'
  934. if alko >= 3 and alko < 6:$stat_msg += '<BR><b><font color="red">You''re drunk.</font></b>'
  935. if alko >= 6:$stat_msg += '<BR><b><font color="red">You''re wasted.</font></b>'
  936. end
  937. if StoryLine = 1:
  938. if day = 31 and month = 12 and SchoolAtestat = 0 and hour >= 5 and hour <= 14 and StoryLine = 1:$stat_msg += '<BR>At 14:00 your school''s New Year''s party will start.'
  939. if sisboyday + 1 = daystart and hour < 19 and (npc_QW['A33'] = 3 or npc_QW['A33'] = 5 or npc_QW['A33'] = 7 or (npc_QW['A33'] = 9 and sisboytrioQW ! 1)):$stat_msg += '<BR>' & $stat_msg += '<BR>You promised your sister not to go into your room at 18:00.'
  940. if sisboyday + 1 = daystart and hour < 19 and sisboytrioQW = 1:$stat_msg += '<BR>' & $stat_msg += '<BR>You promised your sister to meet her in your room at 18:00.'
  941. if week = 6 and hour < 9 and detention_set = 1:$stat_msg += '<BR><b>You have a detention this morning and must be at school between 8 and 9.</b>'
  942. end
  943. if model > 0 and model_week = (daystart - week) / 7:
  944. $stat_msg += '<BR><b>You have worked as a model this week.</b>'
  945. elseif model > 0 and model_week < (daystart - week) / 7:
  946. $stat_msg += '<BR><b>You can do paid modelling this week.</b>'
  947. end
  948. if pornstack > 0:
  949. aa = 0
  950. :pfilmtime
  951. if aa < 200 and pfilmday[aa] = 0: aa += 1 & jump 'pfilmtime'
  952. end
  953. if pornstack > 0 and pfilmday[0] = 0:
  954. if pfilmday[1] = 0:
  955. $stat_msg += '<br><b>You will star in another porno in <<aa>> days.</b>'
  956. else
  957. $stat_msg += '<br><b>You have a porno shoot scheduled tomorrow.</b>'
  958. end
  959. end
  960. if pfilmday[0] > 0:
  961. if pornnow = 1:
  962. $stat_msg += '<br><b>You are at a porn shooting.</b>'
  963. else
  964. if hour < 11: $stat_msg += '<br><b>You are expected in the porno studio at 10:00.</b>'
  965. if hour >= 11 and hour < 13: $stat_msg += '<br><b>You should be at the porno studio, shooting!</b>'
  966. if hour >= 13: $stat_msg += '<br><b>You missed a scheduled porno shoot!</b>'
  967. end
  968. end
  969. if pornmiss = 1: $stat_msg += '<br><b>You missed a scheduled porno shoot!</b>'
  970. if prodcosttrue > 0: $stat_msg += '<br><b>You owe to the porn studio <<prodcost>>?</b>'
  971. if firstkasting > 0 and pfilmNO < 1 and pornstack < 10: $stat_msg += '<br><b>You can contract to <<10-pornstack>> porno movie.</b>'
  972. if hour < 22 and week >= 2 and week <= 4 and workKafe = 1:$stat_msg += '<BR><b><font color="red">Today you have a shift in cafe starting at 11:00.</font></b>'
  973. if hour < 17 and week < 5 and workSec >= 1 or hour < 17 and week < 5 and PersSecWork = 1:$stat_msg += '<BR><b><font color="red">Today you have a shift as a secretary from 9:00 to 17:00</font></b>'
  974. if hour < 20 and week => 1 and week <= 5 and age < 18 and workFabrika = 1:$stat_msg += '<BR><b><font color = red>Today you have work in the garment factory in Pavlovsk. Shift starts at 16:00.</font></b>'
  975. if hour < 16 and week => 1 and week <= 5 and age >= 18 and workFabrika = 1:$stat_msg += '<BR><b><font color = red>Today you have work in the garment factory in Pavlovsk. Shift starts at 8:00.</font></b>'
  976. if hour < 16 and week > 1 and week <= 5 and workhosp = 1:$stat_msg += '<BR><b><font color="red">You work as a nurse in the clinic. Your shift starts at 8:00.</font></b>'
  977. if hour < 10 and worksalon = 1 and (week = 1 or week = 3 or week = 5):$stat_msg += '<BR><b><font color = red>Today you have work as masseuse in beauty salon. Shift starts at 9:00.</font></b>'
  978. if leonidVisit = 1: $stat_msg += '<br><b>You have to serve Leonid at 20:00 in his Pavlovsk office!</b>'
  979. gs 'brother', 'brotherSexCount'
  980. !!zero checks marriage
  981. proverka1 = 0
  982. proverka2 = 0
  983. proverka3 = 0
  984. proverka4 = 0
  985. proverka5 = 0
  986. if boletus + bilberry > 0:
  987. if boletus + bilberry >= 10:
  988. $stat_msg +='<br><b><font color = Olive>You have a full basket.</b></font> '
  989. else
  990. $stat_msg +='<br><b>In Your basket</b>:'
  991. end
  992. if boletus > 0:$stat_msg +='mushrooms: <b><<boletus>></b> kg.'
  993. if bilberry > 0:$stat_msg +='berries: <b><<bilberry>></b> kg.'
  994. end
  995. $stat_msg += '<br><a href="exec:savegame ''quicksave.sav'' && pl''Quicksave Done''">Q.Save</a> <a href="exec:savegame">Save</a> <a href="exec:opengame">Load</a> <a href="exec:if input(''Input Anything to confirm Quick Load'') ! null: opengame ''quicksave.sav''">Q.Load</a>'
  996. $stat_android += ' <a href="exec:savegame ''quicksave.sav'' && pl''Quicksave Done''">Q.S</a> <a href="exec:if input(''Input Anything to confirm Quick Load'') ! null: opengame ''quicksave.sav''">Q.L</a>'
  997. if Enable_statfsize > 0: $stat_msg += '<BR></font>' & !disable this, all texts comes from pl will have the same font size, like[time]
  998. if Enable_faceturn = 1: view FUNC('$face_image')
  999. if Enable_Android = 0:
  1000. pl '<<$weatherImage>>'
  1001. pl '<<$stat_msg>>'
  1002. else
  1003. '<<$stat_android>>'
  1004. $stat_msg = 'Android mode, <a href="exec:gs ''$menu_obnovit''">Refresh</a><<$stat_msg>>'
  1005. end
  1006. --- stat_display ---------------------------------