stat_display.qsrc 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410
  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. paintmp1 = func('shortgs','modul',pain['head'],pain['hair'],pain['ears'],pain['eyebrows'],pain['eyes'],pain['cheeks'],pain['nose'],pain['mouth'])
  15. paintmp2 = func('shortgs','modul',pain['tummy'],pain['pubic'],pain['vaginal'],pain['labia'],pain['clitoris'],pain['urethra'],pain['cervix'],pain['lips'])
  16. paintmp3 = func('shortgs','modul',pain['throat'],pain['asscheeks'],pain['asshole'],pain['hips'],pain['thighs'],pain['legL'],pain['legR'],pain['feet'])
  17. paintmp4 = func('shortgs','modul',pain['toes'],pain['shoulders'],pain['armL'],pain['armR'],pain['hands'],pain['fingers'],pain['chest'],pain['breasts'])
  18. paintmp5 = func('shortgs','modul',pain['tongue'],pain['neck'],pain['back'],pain['nipples'],pain['ribs'],vgape * 8, agape * 10,spanked * 24)
  19. pain['total'] = func('shortgs','modul',paintmp1,paintmp2,paintmp3,paintmp4,paintmp5)
  20. if pain['total'] > 100: pain['total'] = 100
  21. pain['damage'] = pain['total']
  22. pain['relief'] = 0
  23. if alko > 9:
  24. pain['relief'] = 70
  25. elseif alko > 6:
  26. pain['relief'] = 40
  27. elseif alko > 3:
  28. pain['relief'] = 15
  29. end
  30. if StrongNarkota > 0:
  31. pain['relief'] = 90
  32. elseif nark > 0:
  33. pain['relief'] = 60
  34. elseif pain['killer'] > 12 and alko <= 9:
  35. pain['relief'] = 50
  36. end
  37. if pain['relief'] ! 0:
  38. if (pain['total'] / pain['relief']) > 0:
  39. pain['total'] = pain['total'] / pain['relief']
  40. elseif pain['total'] > 0:
  41. pain['total'] = 0
  42. end
  43. end
  44. if pain['total'] > 80:
  45. if (pcs_health * 5) >= healthmax: pcs_health = pcs_health * 20 / 100
  46. if (pcs_mood * 5) >= 100: pcs_mood = pcs_mood * 20 / 100
  47. elseif pain['total'] > 60:
  48. if (pcs_health * 5 / 2) >= healthmax: pcs_health = pcs_health * 40 / 100
  49. if (pcs_mood * 5 / 2) >= 100: pcs_mood = pcs_mood * 40 / 100
  50. elseif pain['total'] > 40:
  51. if (pcs_health * 5 / 3) >= healthmax: pcs_health = pcs_health * 60 / 100
  52. if (pcs_mood * 5 / 3) >= 100: pcs_mood = pcs_mood * 60 / 100
  53. elseif pain['total'] > 20:
  54. if (pcs_health * 5 / 4) >= healthmax: pcs_health = pcs_health * 80 / 100
  55. if (pcs_mood * 5 / 4) >= 100: pcs_mood = pcs_mood * 80 / 100
  56. elseif pain['total'] > 0:
  57. if (pcs_health * 10 / 9) >= healthmax: pcs_health = pcs_health * 90 / 100
  58. if (pcs_mood * 10 / 9) >= 100: pcs_mood = pcs_mood * 90 / 100
  59. end
  60. !!--------------------------pain calculation end--------------------------------
  61. !!update skills and attributes to pcs_ from there _lvl values plus adjustments based on condition
  62. gs 'stat_sklattrib_lvlset'
  63. !!Sleep variable cap
  64. if pcs_sleep > 100: pcs_sleep = 100
  65. !!!!!!!!!!!!!!!!!!!!!
  66. !!!Beginning Description!!!
  67. !!!!!!!!!!!!!!!!!!!!!
  68. !!----------------image Extra messages, start--------------------------
  69. $stat_imgtool_msg=''
  70. $stat_imgextra_msg=''
  71. if Enable_showstatimg = 1:
  72. !There are 3 display mode, with toobar / top / bottom, controlled by Enable_statimg_loc
  73. if Enable_statimg_face = 0:
  74. $stat_imgtool_msg += '<a href="exec:Enable_statimg_face = 1 & gs ''$menu_obnovit''">◇Face</a>'
  75. else
  76. $stat_imgtool_msg += '<a href="exec:Enable_statimg_face = 0 & gs ''$menu_obnovit''">◆Face</a>'
  77. $img_temp = FUNC('$face_image')
  78. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  79. end
  80. if Enable_statimg_body = 0:
  81. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_body = 1 & gs ''$menu_obnovit''">◇Body</a>'
  82. else
  83. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_body = 0 & gs ''$menu_obnovit''">◆Body</a>'
  84. $img_temp = FUNC('$body_image','body')
  85. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  86. end
  87. if Enable_statimg_coat = 0:
  88. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_coat = 1 & gs ''$menu_obnovit''">◇Coat</a>'
  89. else
  90. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_coat = 0 & gs ''$menu_obnovit''">◆Coat</a>'
  91. $img_temp = FUNC('$body_image','coat')
  92. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  93. end
  94. if Enable_statimg_cloth = 0:
  95. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_cloth = 1 & gs ''$menu_obnovit''">◇Clothes</a>'
  96. else
  97. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_cloth = 0 & gs ''$menu_obnovit''">◆Clothes</a>'
  98. $img_temp = FUNC('$body_image','clothes')
  99. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  100. end
  101. if Enable_statimg_bra = 0:
  102. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_bra = 1 & gs ''$menu_obnovit''">◇Bra</a>'
  103. else
  104. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_bra = 0 & gs ''$menu_obnovit''">◆Bra</a>'
  105. $img_temp = FUNC('$body_image','bra')
  106. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  107. end
  108. if Enable_statimg_panties = 0:
  109. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_panties = 1 & gs ''$menu_obnovit''">◇Panties</a>'
  110. else
  111. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_panties = 0 & gs ''$menu_obnovit''">◆Panties</a>'
  112. $img_temp = FUNC('$body_image','panties')
  113. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  114. end
  115. if Enable_statimg_shoes = 0:
  116. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_shoes = 1 & gs ''$menu_obnovit''">◇Shoes</a>'
  117. else
  118. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_shoes = 0 & gs ''$menu_obnovit''">◆Shoes</a>'
  119. $img_temp = FUNC('$body_image','shoes')
  120. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  121. end
  122. $stat_imgtool_msg += ' <a href="exec:gs ''Cheatmenu_din'' & dynamic $cheatmenu[''setting'']">◎Settings</a>'
  123. end
  124. !!----------------image Extra messages, end --------------------------
  125. if Enable_statimg_loc = 1:
  126. $stat_msg = '<<$stat_imgtool_msg>><br><<$stat_imgextra_msg>><br><<$stat_msg>>'
  127. end
  128. $stat_android = '<b><<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>></b>'
  129. $stat_msg += '<table><tr><td><a href="exec:msg ''<<$weather>>''"><<$weatherImage>></a></td><td><<$temperature>></td></tr></table>'
  130. if Enable_statfsize>0:$stat_msg = '<font size=<<Enable_statfsize>>><<$stat_msg>>'
  131. !$stat_msg += '<<$weather>><BR>'
  132. !pl '<<$weatherImage>>'
  133. if timeHidden = 0:
  134. $stat_msg += '<BR><<$stat_android>> <<$week[week]>> <<day>> <<$month>> <<year>>'
  135. end
  136. $stat_android += '<<$week[week]>> <<day>>/<<month>>, <<money>> ₽, <a href="exec:clr & pl $stat_android">Status</a>'
  137. ! $stat_android for short desc in android mode, $stat_msg for status bar.
  138. if StoryLine > 0 and SchoolAtestat ! 1 and $holyday ! '': $stat_msg += '<BR><<$holyday>>' & $stat_msg += '<BR>'
  139. if birthday = day and birthmonth = month: $stat_msg += '<BR><b>Today is your birthday.</b>' & $stat_msg += '<BR>'
  140. !New icon based menu.
  141. if menu_off = 0:
  142. $menuBarTab += '<table>
  143. <tr>
  144. <td><a href="exec:killvar ''menu_page'' & gs ''obj_din'', ''description''"><img src="images/system/menu icons/icon_character.png"></a></td>
  145. <td><a href="exec:killvar ''menu_page'' & gs ''obj_din'', ''face''"><img src="images/system/menu icons/icon_lookself.png"></a></td>'
  146. if bag > 0:
  147. $menuBarTab += '
  148. <td><a href="exec:gs ''din_bad'', ''d_bag''"><img src="images/system/menu icons/icon_purse.png"></a></td>'
  149. end
  150. $menuBarTab += '
  151. <td><a href="exec:gs ''telefon'',''Phone_menu''"><img src="images/system/menu icons/icon_phone.png"></a></td>'
  152. if MagikDostup = 0:
  153. $menuBarTab += '
  154. <td><a href="exec:gs ''spellBook'',''$nonComSpells''"><img src="images/system/menu icons/icon_magic.png"></a></td>'
  155. end
  156. $menuBarTab += '
  157. <td><a href="exec:gs ''obj_din'', ''records''"><img src="images/system/menu icons/icon_additional.png"></a></td>
  158. <td><a href="exec:killvar ''menu_page'' & gs''$menu_setting''"><img src="images/system/menu icons/icon_menu.png"></a></td>
  159. </tr>
  160. </table>'
  161. $stat_msg += func('cleanHTML',$menuBarTab)
  162. killvar '$menuBarTab'
  163. elseif menu_off = 1:
  164. $menuBarTab += '<table>
  165. <tr>
  166. <td><a href="exec:killvar ''menu_page'' & gs ''obj_din'', ''menu_disabled''"><img src="images/system/menu icons/icon_character.png"></a></td>
  167. <td><a href="exec:killvar ''menu_page'' & gs ''obj_din'', ''menu_disabled''"><img src="images/system/menu icons/icon_lookself.png"></a></td>'
  168. if bag > 0:
  169. $menuBarTab += '
  170. <td><a href="exec:gs ''obj_din'', ''menu_disabled''"><img src="images/system/menu icons/icon_purse.png"></a></td>'
  171. end
  172. $menuBarTab += '
  173. <td><a href="exec:gs ''telefon'',''Phone_menu''"><img src="images/system/menu icons/icon_phone.png"></a></td>'
  174. if MagikDostup = 0:
  175. $menuBarTab += '
  176. <td><a href="exec:gs ''spellBook'',''$nonComSpells''"><img src="images/system/menu icons/icon_magic.png"></a></td>'
  177. end
  178. $menuBarTab += '
  179. <td><a href="exec:gs ''obj_din'', ''menu_disabled''"><img src="images/system/menu icons/icon_additional.png"></a></td>
  180. <td><a href="exec:killvar ''menu_page'' & gs''obj_din'', ''menu_disabled''"><img src="images/system/menu icons/icon_menu.png"></a></td>
  181. </tr>
  182. </table>'
  183. $stat_msg += func('cleanHTML',$menuBarTab)
  184. killvar '$menuBarTab'
  185. end
  186. $pockets = 'Pockets'
  187. if bag > 0: $pockets = 'Purse'
  188. if bankAccount = 0 and stolmoney = 0:
  189. $stat_msg += '<BR>You have <b><<money>> ₽</b> in your <<$pockets>>.'
  190. else
  191. !combine money status to single line
  192. $stat_msg += '<BR><<$pockets>>: <b><<money>> ₽</b>'
  193. if stolmoney > 0: $stat_msg += ', Drawer <b><<stolmoney>> ₽</b>'
  194. if bankAccount = 1:
  195. if karta >= 0:
  196. $stat_msg += ', Bank: <b><<karta>> ₽</b>'
  197. else
  198. $stat_msg += '<BR><font color="red">Your bank account is overdrawn by <b><<karta>> ₽</b>!!</font>'
  199. end
  200. end
  201. end
  202. !{
  203. $stat_msg += '<BR>You have <b><<money>> ₽</b> in your <<$pockets>>.'
  204. if bankAccount = 1:
  205. if karta >= 0:
  206. $stat_msg += '<BR>You have <b><<karta>> ₽</b> in your bank account.'
  207. else
  208. $stat_msg += '<BR><font color="red">Your bank account is overdrawn by <b><<karta>> ₽</b>!!</font>'
  209. end
  210. end
  211. if stolmoney > 0: $stat_msg += '<BR>You have <b><<stolmoney>> ₽</b> in your desk drawer.'
  212. }
  213. !$stat_msg += '<BR>'
  214. if ETOmenu = 1:
  215. $stat_msg += '<BR><b><<$pcs_health>></b>'
  216. $stat_msg += '<BR><b><<$pcs_willpwr>></b>'
  217. if cheatNoEat = 0: $stat_msg += '<BR><b><<$pcs_energy>></b>'
  218. if cheatNoDrink = 0: $stat_msg += '<BR><b><<$pcs_hydra>></b>'
  219. if cheatNoSleep = 0: $stat_msg += '<BR><b><<$pcs_sleep>></b>'
  220. elseif Enable_scalepic = 2:
  221. $st_temp='rgb(<<(16777216 + fcolor) mod 256>>,<<(16777216 + fcolor)/256 mod 256>>,<<(16777216 + fcolor)/65536>>)'
  222. $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>'
  223. if MagikDostup = 0: $stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_mana * 100 / manamax, pcs_mana)+'</TD><TD> Mana</TD></TR>'
  224. $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>'
  225. if cheatNoEat = 0: $stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_energy, pcs_energy)+'</TD><TD> Hunger</TD></TR>'
  226. if cheatNoDrink = 0: $stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_hydra, pcs_hydra)+'</TD><TD> Thirst</TD></TR>'
  227. if cheatNoSleep = 0: $stat_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_sleep, pcs_sleep)+'</TD><TD> Sleep</TD></TR></TABLE></font></p>'
  228. else
  229. gs 'indik', '2', pcs_horny, pcs_horny
  230. $stat_msg += '<BR><<$ind>> Arousal'
  231. gs 'indik', '2', pain['total'], pain['total'], pain['damage']
  232. $stat_msg += '<BR><<$ind>> Pain'
  233. gs 'indik', '1', pcs_health * 100 / healthmax, pcs_health
  234. $stat_msg += '<BR><<$ind>> Health'
  235. if MagikDostup = 0:
  236. gs 'indik', '1', pcs_mana * 100 / manamax, pcs_mana
  237. $stat_msg += '<BR><<$ind>> Mana'
  238. end
  239. gs 'indik', '1', pcs_willpwr * 100 / willpowermax, pcs_willpwr
  240. $stat_msg += '<BR><<$ind>> Willpower'
  241. gs 'indik', '1', pcs_stam * 100 / stammax, pcs_stam
  242. $stat_msg += '<BR><<$ind>> Stamina'
  243. gs 'indik', '1', pcs_mood, pcs_mood
  244. $stat_msg += '<BR><<$ind>> Mood'
  245. if cheatNoEat = 0:
  246. gs 'indik', '1', pcs_energy, pcs_energy
  247. $stat_msg += '<BR><<$ind>> Hunger'
  248. end
  249. if cheatNoDrink = 0:
  250. gs 'indik', '1', pcs_hydra, pcs_hydra
  251. $stat_msg += '<BR><<$ind>> Thirst'
  252. end
  253. if cheatNoSleep = 0:
  254. gs 'indik', '1', pcs_sleep, pcs_sleep
  255. $stat_msg += '<BR><<$ind>> Sleep'
  256. end
  257. end
  258. !!----------------Extra messages, start--------------------------
  259. !!----------------▽Attributes--------------------------
  260. $stat_tool_msg=''
  261. $stat_extra_msg=''
  262. if Enable_showattr = 0:
  263. $stat_tool_msg += '<a href="exec:Enable_showattr = 1 & gs ''$menu_obnovit''">▽Attributes</a>'
  264. else
  265. $stat_tool_msg += '<a href="exec:Enable_showattr = 0 & gs ''$menu_obnovit''">▲Attributes</a>'
  266. !skip if this is first message
  267. if $stat_extra_msg ! null: $stat_extra_msg += '<br><a href="exec:Enable_showattr = 0 & gs ''$menu_obnovit''">▲Attributes:</a>'
  268. if Enable_scalepic = 2:
  269. if pcs_dom > 10:
  270. $dom_stat_msg = 'dominant'
  271. elseif sub > 10:
  272. $dom_stat_msg = 'submissive'
  273. else
  274. $dom_stat_msg = 'neutral'
  275. end
  276. $stat_extra_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', 100 - pcs_inhib, 100 - pcs_inhib)+'</TD><TD> Inhibition</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> Reaction</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>'
  277. if MagikDostup = 0: $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_magik, pcs_magik)+'</TD><TD> Magic</TD></TR>'
  278. if succubusflag = 1: $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', sucexcess, sucexcess)+'</TD><TD> Succubus Energy</TD></TR>'
  279. $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_apprnc / 2, pcs_apprnc)+'</TD><TD> Attractiveness</TD></TR>'
  280. if SchoolAtestat = 0 and StoryLine > 0:$stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_grades, pcs_grades)+'</TD><TD nowrap> School Grades</TD></TR>'
  281. $stat_extra_msg += '</TABLE></font>'
  282. killvar '$dom_stat_msg'
  283. else
  284. gs 'indik','3', 50+(pcs_dom-sub)/2, 50+(pcs_dom-sub)/2
  285. $stat_extra_msg += '<BR><<$ind>> Dominance'
  286. if pcs_dom > 10:
  287. $stat_extra_msg += ' (dominant)'
  288. elseif sub > 10:
  289. $stat_extra_msg += ' (submissive)'
  290. else
  291. $stat_extra_msg += ' (natural)'
  292. end
  293. gs 'indik', '1', 100 - pcs_inhib, 100 - pcs_inhib
  294. $stat_extra_msg += '<BR><<$ind>> Inhibition'
  295. gs 'indik', '1', pcs_stren, pcs_stren
  296. $stat_extra_msg += '<BR><<$ind>> Strength'
  297. gs 'indik', '1', pcs_agil, pcs_agil
  298. $stat_extra_msg += '<BR><<$ind>> Agility'
  299. gs 'indik', '1', pcs_vital, pcs_vital
  300. $stat_extra_msg += '<BR><<$ind>> Endurance'
  301. gs 'indik', '1', pcs_intel, pcs_intel
  302. $stat_extra_msg += '<BR><<$ind>> Intelligence'
  303. gs 'indik', '1', pcs_sprt, pcs_sprt
  304. $stat_extra_msg += '<BR><<$ind>> Spirit'
  305. gs 'indik', '1', pcs_react, pcs_react
  306. $stat_extra_msg += '<BR><<$ind>> Reaction'
  307. gs 'indik', '1', pcs_chrsm, pcs_chrsm
  308. $stat_extra_msg += '<BR><<$ind>> Charisma'
  309. gs 'indik', '1', pcs_prcptn, pcs_prcptn
  310. $stat_extra_msg += '<BR><<$ind>> Perception'
  311. if MagikDostup = 0:
  312. gs 'indik', '1', pcs_magik, pcs_magik
  313. $stat_extra_msg += '<BR><<$ind>> Magic'
  314. if succubusflag = 1:
  315. gs 'indik', '1', sucexcess, sucexcess
  316. $stat_extra_msg += '<BR><<$ind>> Succubus energy'
  317. end
  318. end
  319. gs 'indik', '1', pcs_apprnc / 2, pcs_apprnc
  320. $stat_extra_msg += '<BR><<$ind>> Attractiveness'
  321. if SchoolAtestat = 0 and StoryLine > 0:
  322. gs 'indik', '1', pcs_grades, pcs_grades
  323. $stat_extra_msg += '<BR><<$ind>> School Grades'
  324. end
  325. $stat_extra_msg += '<BR>'
  326. end
  327. end
  328. killvar '$st_temp'
  329. !!----------------▽Skills--------------------------
  330. if Enable_showskill = 0:
  331. $stat_tool_msg += ' <a href="exec:Enable_showskill = 1 & gs ''$menu_obnovit''">▽Skills</a>'
  332. else
  333. $stat_tool_msg += ' <a href="exec:Enable_showskill = 0 & gs ''$menu_obnovit''">▲Skills</a>'
  334. !!----------------------▲Skills display------------------------
  335. $stat_sktool_msg=''
  336. st_count=0
  337. $show_table=''
  338. !!----------------Mental skills--------------------------
  339. if Enable_show_mental_skill = 0:
  340. $stat_sktool_msg += ' <a href="exec:Enable_show_mental_skill = 1 & gs ''$menu_obnovit''">◇Mental</a>'
  341. else
  342. $stat_sktool_msg += ' <a href="exec:Enable_show_mental_skill = 0 & gs ''$menu_obnovit''">◆Mental</a>'
  343. if pcs_splcstng > 0 and MagikDostup = 0: gs 'show_table', '<<pcs_splcstng>> Spell Casting', '2'
  344. if pcs_humint > 0: gs 'show_table', '<<pcs_humint>> People skills', '2'
  345. if pcs_persuas > 0: gs 'show_table', '<<pcs_persuas>> Persuasion', '2'
  346. if pcs_observ > 0: gs 'show_table', '<<pcs_observ>> Observation', '2'
  347. end
  348. !!-----------------Sport skills--------------------------
  349. if Enable_show_sport_skill = 0:
  350. $stat_sktool_msg += ' <a href="exec:Enable_show_sport_skill = 1 & gs ''$menu_obnovit''">◇Sport</a>'
  351. else
  352. $stat_sktool_msg += ' <a href="exec:Enable_show_sport_skill = 0 & gs ''$menu_obnovit''">◆Sport</a>'
  353. if pcs_jab > 0: gs 'show_table', '<<pcs_jab>> Jabs', '2'
  354. if pcs_punch > 0: gs 'show_table', '<<pcs_punch>> Power Strikes', '2'
  355. if pcs_kick > 0: gs 'show_table', '<<pcs_kick>> Kicks', '2'
  356. if pcs_def > 0: gs 'show_table', '<<pcs_def>> Defence', '2'
  357. if pcs_run > 0: gs 'show_table', '<<pcs_run>> Running', '2'
  358. if pcs_vball > 0: gs 'show_table', '<<pcs_vball>> Volleyball', '2'
  359. if pcs_ftbll > 0: gs 'show_table', '<<pcs_ftbll>> Football', '2'
  360. if pcs_wrstlng > 0: gs 'show_table', '<<pcs_wrstlng>> Wrestling', '2'
  361. if pcs_shoot > 0: gs 'show_table', '<<pcs_shoot>> Marksmanship', '2'
  362. if pcs_bushcraft > 0: gs 'show_table', '<<pcs_bushcraft>> Bushcraft', '2'
  363. if pcs_chess > 0: gs 'show_table', '<<pcs_chess>> Chess', '2'
  364. if pcs_icesktng > 0: gs 'show_table', '<<pcs_icesktng>> Ice Skating', '2'
  365. if pcs_gaming > 0: gs 'show_table', '<<pcs_gaming>> Gaming', '2'
  366. if pcs_pool > 0: gs 'show_table', '<<pcs_pool>> Pool', '2'
  367. end
  368. !!-----------------Beauty/Modelling skills---------------
  369. if Enable_show_beauty_skill = 0:
  370. $stat_sktool_msg += ' <a href="exec:Enable_show_beauty_skill = 1 & gs ''$menu_obnovit''">◇Beauty</a>'
  371. else
  372. $stat_sktool_msg += ' <a href="exec:Enable_show_beauty_skill = 0 & gs ''$menu_obnovit''">◆Beauty</a>'
  373. if pcs_makupskl > 0: gs 'show_table', '<<pcs_makupskl>> Makeup Skill', '2'
  374. if pcs_danc > 0: gs 'show_table', '<<pcs_danc>> Modern Dancing', '2'
  375. if pcs_dancero > 0: gs 'show_table', '<<pcs_dancero>> Erotic Dancing', '2'
  376. if pcs_dancpol > 0: gs 'show_table', '<<pcs_dancpol>> Pole Dancing', '2'
  377. if pcs_mdlng > 0: gs 'show_table', '<<pcs_mdlng>> Modelling', '2'
  378. if pcs_heels > 0: gs 'show_table', '<<pcs_heels>> Heels', '2'
  379. end
  380. !!---------------------Artistic skills-------------------
  381. if Enable_show_art_skill = 0:
  382. $stat_sktool_msg += ' <a href="exec:Enable_show_art_skill = 1 & gs ''$menu_obnovit''">◇Artistic</a>'
  383. else
  384. $stat_sktool_msg += ' <a href="exec:Enable_show_art_skill = 0 & gs ''$menu_obnovit''">◆Artistic</a>'
  385. if pcs_vokal > 0: gs 'show_table', '<<pcs_vokal>> Singing', '2'
  386. if pcs_instrmusic > 0: gs 'show_table', '<<pcs_instrmusic>> Instrumental Music', '2'
  387. if pcs_photoskl > 0: gs 'show_table', '<<pcs_photoskl>> Photography', '2'
  388. if pcs_artskls > 0: gs 'show_table', '<<pcs_artskls>> Artistic Skills', '2'
  389. end
  390. !!----------------------Job skills------------------------
  391. if Enable_show_job_skill = 0:
  392. $stat_sktool_msg += ' <a href="exec:Enable_show_job_skill = 1 & gs ''$menu_obnovit''">◇Job</a>'
  393. else
  394. $stat_sktool_msg += ' <a href="exec:Enable_show_job_skill = 0 & gs ''$menu_obnovit''">◆Job</a>'
  395. if pcs_cleaning > 0: gs 'show_table', '<<pcs_cleaning>> Cleaning Skill', '2'
  396. if pcs_compskl > 0: gs 'show_table', '<<pcs_compskl>> Computer Skill', '2'
  397. if pcs_comphckng > 0: gs 'show_table', '<<pcs_comphckng>> Hacking', '2'
  398. if pcs_hndiwrk > 0: gs 'show_table', '<<pcs_hndiwrk>> Handy-work', '2'
  399. if pcs_sewng > 0: gs 'show_table', '<<pcs_sewng>> Tailoring', '2'
  400. if pcs_servng > 0: gs 'show_table', '<<pcs_servng>> Serving', '2'
  401. if pcs_medcn > 0: gs 'show_table', '<<pcs_medcn>> Medicine', '2'
  402. if workPTU > 1: gs 'show_table','<<teachlevel>> Teacher credibility','2'
  403. end
  404. !skip if this is first message
  405. if $stat_extra_msg ! null:
  406. $stat_extra_msg += '<br><a href="exec:Enable_showskill = 0 & gs ''$menu_obnovit''">▲Skills:</a> <<$stat_sktool_msg>>'
  407. else
  408. $stat_extra_msg += '<br><<$stat_sktool_msg>>'
  409. end
  410. if st_count > 0 :
  411. $stat_extra_msg += '<BR><TABLE BORDER=1><<$show_table>></TR></TABLE>'
  412. end
  413. end
  414. killvar 'stat_sktool_msg'
  415. killvar 'stat_skextra_msg'
  416. !!----------------▽relations--------------------------
  417. if Enable_showrelation = 0:
  418. $stat_tool_msg += ' <a href="exec:Enable_showrelation = 1 & gs ''$menu_obnovit''">▽Relations</a>'
  419. else
  420. $stat_tool_msg += ' <a href="exec:Enable_showrelation = 0 & gs ''$menu_obnovit''">▲Relations</a>'
  421. st_count=0
  422. $show_table=''
  423. if npc_QW['A192'] > 0:gs'show_table','Nastja: <<npc_QW[''A192'']>>','2'
  424. if npc_rel['A218'] > 0:gs'show_table','Tanya: <<npc_rel[''A218'']>>','2'
  425. if npc_rel['A219'] > 0:gs'show_table','Kat: <<npc_rel[''A219'']>>','2'
  426. if npc_rel['A220'] > 0:gs'show_table','Vika: <<npc_rel[''A220'']>>','2'
  427. if npc_rel['A93'] > 0:gs'show_table','Ira: <<npc_rel[''A93'']>>','2'
  428. if npc_rel['A43'] > 0:gs'show_table','Tamara: <<npc_rel[''A43'']>>','2'
  429. if alla > 0:gs'show_table','Alla: <<alla>>','2'
  430. if masha > 0:gs'show_table','Masha: <<masha>>','2'
  431. if npc_rel['A41'] > 0:gs'show_table','Givi Karapetovich: <<npc_rel[''A41'']>>','2'
  432. if npc_rel['A42'] > 0:gs'show_table','Ashot: <<npc_rel[''A42'']>>','2'
  433. if afra > 0:gs'show_table','Blacks: <<afra>>','2'
  434. if Rex > 0:gs'show_table','Rex: <<Rex>>','2'
  435. if npc_rel['A217'] > 0:gs'show_table','Pavlin: <<npc_rel[''A217''] >>','2'
  436. if npc_rel['A69'] > 0:gs'show_table','Mikhail Nikolaevich: <<npc_rel[''A69'']>>','2'
  437. if npc_rel['A89'] > 0:gs'show_table','Eugene: <<npc_rel[''A89'']>>','2'
  438. if npc_rel['A112'] > 0:gs'show_table','Sergei Shulgin: <<npc_rel[''A112'']>>','2'
  439. if npc_rel['A11'] > 0:gs'show_table','Vasily Shulgin: <<npc_rel[''A11'']>>','2'
  440. if huntersAndreiQw > 0:gs'show_table','Hunter Andrew: <<huntersAndreiQw>>','2'
  441. if huntersSergeiQw > 0:gs'show_table','Hunter Sergei: <<huntersSergeiQw>>','2'
  442. if huntersIgorQw > 0:gs'show_table','Hunter Igor: <<huntersIgorQw>>','2'
  443. if pcs_lovers[0] = 1:gs'show_table', 'BF <<$loverdesc[0]>>: <<loverrelation[0]>>','2'
  444. if pcs_lovers[1] = 1:gs'show_table', 'BF <<$loverdesc[1]>>: <<loverrelation[1]>>','2'
  445. if pcs_lovers[2] = 1:gs'show_table', 'BF <<$loverdesc[2]>>: <<loverrelation[2]>>','2'
  446. if StoryLine > 0:
  447. if npc_rel['A29'] > 0:gs'show_table','Mother: <<npc_rel[''A29'']>>','2'
  448. if npc_rel['A28'] > 0:gs'show_table','Father: <<npc_rel[''A28'']>>','2'
  449. if npc_rel['A33'] > 0:gs'show_table','Sister: <<npc_rel[''A33'']>>','2'
  450. if npc_rel['A34'] > 0:gs'show_table','Brother: <<npc_rel[''A34'']>>','2'
  451. end
  452. if st_count > 0 :
  453. !skip if this is first message
  454. if $stat_extra_msg ! null: $stat_extra_msg += '<BR><a href="exec:Enable_showrelation = 0 & gs ''$menu_obnovit''">▲Relations:</a>'
  455. $stat_extra_msg += '<BR><TABLE BORDER=1> <<$show_table>></TR></TABLE>'
  456. end
  457. end
  458. !!----------------▽image, default to toolbar, can move to top or bottom from setting--------------------------
  459. if Enable_statimg_loc = 0:
  460. if Enable_showstatimg = 0:
  461. $stat_tool_msg += ' <a href="exec:Enable_showstatimg = 1 & gs ''$menu_obnovit''">▽Image</a>'
  462. else
  463. $stat_tool_msg += ' <a href="exec:Enable_showstatimg = 0 & gs ''$menu_obnovit''">▲Image</a>'
  464. !skip if this is first message
  465. if $stat_extra_msg ! null:
  466. $stat_extra_msg += '<br><a href="exec:Enable_showstatimg = 0 & gs ''$menu_obnovit''">▲Image:</a> <<$stat_imgtool_msg>>'
  467. else
  468. $stat_extra_msg += '<br><<$stat_imgtool_msg>>'
  469. end
  470. $stat_extra_msg += '<br><<$stat_imgextra_msg>>'
  471. end
  472. end
  473. !all end, push back and clean up
  474. $stat_msg += '<br><br><<$stat_tool_msg>>'
  475. if $stat_extra_msg ! NULL : $stat_msg += '<<$stat_extra_msg>>'
  476. $stat_msg += '<br>'
  477. killvar 'stat_tool_msg'
  478. killvar 'stat_extra_msg'
  479. !!----------------Extra messages, End--------------------------
  480. if opPRE = 0: $stat_msg += '<BR><<$pcs_makeup>> and your hair is <<$pcs_hairbsh>>.' & !$stat_msg += '<BR>'
  481. if thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon2 <= 30000 and succubusflag ! 1 and cheatSlut = 0 and mesec = 0:
  482. if abortionbirthdate = 0 and daystart - lastmens > 28:
  483. if (daystart - lastmens > 28) and (daystart - lastmens <= 35):
  484. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by <<daystart - lastmens - 28>> days.</b></font>'
  485. elseif (daystart - lastmens > 35) and (daystart - lastmens <= 42):
  486. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by more than a week!</b></font>'
  487. elseif (daystart - lastmens > 42) and (daystart - lastmens <= 56):
  488. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by more than two weeks! Maybe you should see a doctor?</b></font>'
  489. elseif (daystart - lastmens > 56) and (daystart - lastmens <= 84):
  490. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by more than a month! You really should see a doctor about it.</b></font>'
  491. elseif daystart - lastmens > 84:
  492. $stat_msg += '<BR><font color = #AB052A><b>You should consider the possibility of a pregnancy, since apparently you no longer have periods.</b></font>'
  493. end
  494. !!Recovery period after an abortion is ~14-21 days
  495. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate <= 13:
  496. $stat_msg += '<BR><font color = #705243><b>You are still in your recovery period. Nothing to worry about.</b></font>'
  497. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate > 13 and daystart - abortionbirthdate <= 16:
  498. $stat_msg += '<BR><font color = #705243><b>You are maybe still in your recovery period, but there could be a risk.</b></font>'
  499. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate > 16 and daystart - abortionbirthdate <= 21:
  500. $stat_msg += '<BR><font color = #820000><b>You should have recovered from you abortion by know... Right?</b></font>'
  501. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate > 21:
  502. $stat_msg += '<BR><font color = #820000><b>You should have definitely recovered from your abortion by now.</b></font>'
  503. !!Recovery period after giving birth is ~42-70 days
  504. elseif pregbirthdate ! 0 and daystart - pregbirthdate <= 41:
  505. $stat_msg += '<BR><font color = #705243><b>You are still in your recovery period. Nothing to worry about.</b></font>'
  506. elseif pregbirthdate ! 0 and daystart - pregbirthdate > 41 and daystart - pregbirthdate <= 48:
  507. $stat_msg += '<BR><font color = #705243><b>You are probably still in your recovery period.</b></font>'
  508. elseif pregbirthdate ! 0 and daystart - pregbirthdate > 48 and daystart - pregbirthdate <= 55:
  509. $stat_msg += '<BR><font color = #705243><b>You are maybe still in your recovery period, but there could be a risk.</b></font>'
  510. elseif pregbirthdate ! 0 and daystart - pregbirthdate > 55 and daystart - pregbirthdate <= 70:
  511. $stat_msg += '<BR><font color = #820000><b>You should have recovered by know... Right?</b></font>'
  512. elseif pregbirthdate ! 0 and daystart - pregbirthdate > 70:
  513. $stat_msg += '<BR><font color = #820000><b>You should have definitely recovered from giving birth by now.</b></font>'
  514. end
  515. end
  516. if implant_day > 0:
  517. if ((daystart - implant_day) * 24 + hour - implant_hour) < 5:
  518. $stat_msg += '<BR><font color=#AB052A>You feel a slight twinge in your abdomen.</font>'
  519. end
  520. end
  521. if mesec > 0:
  522. $stat_msg += '<BR><font color="red">You are currently having your period. '
  523. if isprok = 0 and isprokp = 0:
  524. $stat_msg += 'You need to use your feminine hygiene products.'
  525. elseif isprokp = 1 and $pantyworntype = 'none':
  526. isprokp = 0
  527. $stat_msg += 'You need to wear panties to use a sanitary pad.'
  528. end
  529. $stat_msg += '</font>'
  530. elseif placebopart > 0 and LutH > 0 and knowpreg = 0:
  531. $stat_msg += '<BR><font color="red">Your period is due to start soon.'
  532. $stat_msg += '</font>'
  533. end
  534. if $cycreport_txt ! null: $stat_msg += '<BR><a href="exec:dynamic $d_cycreport_choice"><<$cycreport_txt>></a><br>'
  535. !!if shame > 0:$stat_msg += '<BR><<$shame>>' & $stat_msg += '<BR>'
  536. if $pcs_mood ! '':$stat_msg += '<BR><font color="green"><b><<$pcs_mood>></b></font>'
  537. if mentats_dose >= 1:$stat_msg += '<BR><font color = green>You feel sharp and focused.</font>'
  538. if bcream_used = 1:$stat_msg += '<BR><font color = #DB7093>Your breasts are feeling hot and tingly.</font>'
  539. if aphrodisiac_timer > 0:$stat_msg += '<BR><font color = #DB7093>You are feeling hot and every move causes your groin to tingle.</font>'
  540. if cheatNoEat = 0:
  541. if pcs_energy < 5:
  542. $stat_msg += '<BR><font color="red"><b>You feel faint from hunger, if you don''t have something to eat very soon, you will pass out.</b></font>'
  543. elseif pcs_energy < 10:
  544. $stat_msg += '<BR><font color="red">You are starving, you really need to have something to eat.</font>'
  545. elseif pcs_energy < 20:
  546. $stat_msg += '<BR>You are very hungry and struggle to concentrate on anything other than food.'
  547. elseif pcs_energy < 30:
  548. $stat_msg += '<BR>You feel peckish and your thoughts sometimes drift towards food.'
  549. end
  550. end
  551. if cheatNoDrink = 0:
  552. if pcs_hydra < 5:
  553. $stat_msg += '<BR><font color="red"><b>You feel light-headed, if you don''t have something to drink very soon, you will pass out.</b></font>'
  554. elseif pcs_hydra < 10:
  555. $stat_msg += '<BR><font color="red">You are dehydrated, you really need to have something to drink.</font>'
  556. elseif pcs_hydra < 20:
  557. $stat_msg += '<BR>You are thirsty and your dry throat is irritating and distracting you.'
  558. elseif pcs_hydra < 30:
  559. $stat_msg += '<BR>You feel a little thirsty and your mouth is a little dry.'
  560. end
  561. end
  562. if cheatNoSleep= 0:
  563. if pcs_sleep < 5:
  564. $stat_msg += '<BR><font color="red"><b>You can''t keep your eyes open, if you don''t go to bed now, you will fall asleep right here.</b></font>'
  565. elseif pcs_sleep < 10:
  566. $stat_msg += '<BR><font color="red">You are exhausted, you really need to go to bed soon.</font>'
  567. elseif pcs_sleep < 20:
  568. $stat_msg += '<BR>You are tired and you are struggling to concentrate.'
  569. elseif pcs_sleep < 30:
  570. $stat_msg += '<BR>You feel a little tired.'
  571. end
  572. end
  573. if $pantyworntype ! 'none' and clit_size >= 25:$stat_msg += '<BR><font color = #FF1493>Your panties keep rubbing against your clit and making you horny.</font>'
  574. if pcs_horny >= 50:
  575. if pcs_horny < 90 and $pantyworntype ! 'none':
  576. $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>'
  577. elseif pcs_horny < 90 and $pantyworntype = 'none':
  578. $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>'
  579. elseif $pantyworntype ! 'none':
  580. $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>'
  581. else
  582. $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>'
  583. end
  584. end
  585. if PillToggle = 1 and tabletki > 0:
  586. Stabletki += tabletki
  587. tabletki = 0
  588. elseif PillToggle = 0 and Stabletki > 0:
  589. tabletki += Stabletki
  590. Stabletki = 0
  591. end
  592. if CondomToggle = 1 and prezik > 0:
  593. Sprezik += prezik
  594. prezik = 0
  595. elseif CondomToggle = 0 and Sprezik > 0:
  596. prezik += Sprezik
  597. Sprezik = 0
  598. end
  599. if smoker >= 20 and NarkImmune = 0:
  600. if smokerNeed > 0:
  601. if siga > 0:
  602. $stat_msg += '<BR><a href="exec:gs ''drugs'',''smoke''"><font color="red"><b>You want to smoke. You have <<siga>> cigarettes left.</b></font></a><BR>'
  603. else
  604. $stat_msg += '<BR><font color="red"><b>You want to smoke, but you have no cigarettes left.</b></font><BR>'
  605. end
  606. else
  607. if siga > 0:
  608. $stat_msg += '<BR><a href="exec:gs ''drugs'',''smoke''"><font color=#0064FF><b>You have <<siga>> cigarettes left.</b></font></a><BR>'
  609. else
  610. $stat_msg += '<BR><font color=#0064FF><b>You feel like you should get some cigarettes.</b></font><BR>'
  611. end
  612. end
  613. elseif siga > 0:
  614. $stat_msg += '<BR><a href="exec:gs ''drugs'',''smoke''"><font color=#0064FF><b>You have <<siga>> cigarettes.</b></font></a><BR>'
  615. end
  616. if smokeHour = hour and smokeday = daystart and smokeminut >= minut: $stat_msg += '<BR><font color="green">You are smoking a cigarette.</font><BR>'
  617. if jointhour = hour and jointday = daystart and jointminut >= minut: $stat_msg += '<BR><font color="green">You are smoking a joint.</font><BR>'
  618. if cheatNoSweat = 0:
  619. if pcs_sweat < 0 : pcs_sweat = 0
  620. if pcs_sweat > 69 : pcs_sweat = 69
  621. jump 'statDswt<<pcs_sweat/10>>'
  622. :statDswt0
  623. if arrsize('sparrvol') = 0 : $stat_msg += '<BR><b><font color="green">You are sparkling clean.</font></b>'
  624. jump 'statDswtEnd'
  625. :statDswt1
  626. jump 'statDswtEnd'
  627. :statDswt2
  628. $stat_msg += '<BR><font color="brown">You''re sweating.</font><BR>'
  629. jump 'statDswtEnd'
  630. :statDswt3
  631. $stat_msg += '<BR><font color="red">You are a little smelly.</font><BR>'
  632. jump 'statDswtEnd'
  633. :statDswt4
  634. $stat_msg += '<BR><font color="red">You stink.</font><BR>'
  635. jump 'statDswtEnd'
  636. :statDswt5
  637. $stat_msg += '<BR><b><font color="red">You really stink.</font></b><BR>'
  638. jump 'statDswtEnd'
  639. :statDswt6
  640. $stat_msg += '<BR><b><font color="red">You are dripping wet from sweat and smell like a gym sock.</font></b><BR>'
  641. jump 'statDswtEnd'
  642. :statDswtEnd
  643. end
  644. !! breast status
  645. gs 'lact_lib','breast_stat_disp'
  646. if Enable_clearcum > 0:
  647. gs 'cum_cleanup', 'reset'
  648. end
  649. if recuperation = 1:
  650. $stat_msg += '<b><font color="red">You are still recovering from major surgery.</font></b>'
  651. end
  652. $clear_write = {
  653. body_write = 0
  654. face_write = 0
  655. minut += 10
  656. gs '$menu_obnovit'
  657. 'It takes you 10 minutes to thoroughly wash the obscene "painting" from your body.'
  658. }
  659. if body_write > 0 or face_write > 0:
  660. if body_write > 1 and face_write = 0:
  661. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body is inscribed with derogatory graffiti.</font></b></a>'
  662. elseif body_write = 1 and face_write = 0:
  663. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body is an obscene sign.</font></b></a>'
  664. elseif body_write = 0 and face_write > 1:
  665. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your face is covered with writing obscene epithets.</font></b></a>'
  666. elseif body_write = 0 and face_write = 1:
  667. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>On your face humiliating label.</font></b></a>'
  668. else
  669. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body and face painted with obscene graffiti.</font></b></a>'
  670. end
  671. end
  672. killvar 'cumvolume'
  673. killvar 'i'
  674. killvar 'knownguy'
  675. killvar 'cumcount'
  676. killvar 'cumowner'
  677. if arrsize('sparrvol') > 0:
  678. !!go through every location
  679. :locationloop
  680. !!start from the freshest load
  681. idx = arrsize('sparrloc')-1
  682. :spermitemloop
  683. !!if the currently examined load loaction is the location of the current cycle, execute
  684. if sparrloc[idx] = i:
  685. !!setting the age of the current load
  686. !! 0: mouth
  687. !! 1: in this hour
  688. !! 2: in four hours
  689. !! 3: at least five hours ago
  690. !! 4: in body (pussy or ass)
  691. !! 5: no more than 12 hours in condom
  692. !! 6: no more than 48 hours in condom
  693. !! 7: more than two days old, in condom
  694. if i = 12:
  695. j = 0
  696. elseif i = 17:
  697. if sparrage[idx] <= 12:
  698. j = 5
  699. elseif sparrage[idx] <= 48:
  700. j = 6
  701. else
  702. j = 7
  703. end
  704. elseif i = 0 or i = 3:
  705. j = 4
  706. else
  707. if sparrage[idx] <= 1:
  708. j = 1
  709. elseif sparrage[idx] <= 5:
  710. j = 2
  711. else
  712. j = 3
  713. end
  714. end
  715. cumvolume['<<i>>:<<j>>'] += sparrvol[idx]
  716. if sparrvol[idx] > 0:
  717. if sparridt[idx] = 0:
  718. !!unknown partner
  719. cumcount['<<i>>:<<j>>'] += 1
  720. elseif sparridt[idx] = 1:
  721. !!known partner
  722. !!storing the name of the cum owner (format: $cumowner[<cum location>:<age of cum>:<index of cum owner>])
  723. if knownguy['<<i>>:<<j>>'] > 0:
  724. gchk = 0
  725. :sameguycheck
  726. if $cumowner['<<i>>:<<j>>:<<gchk>>'] ! $sparrnam[idx] and gchk <= knownguy['<<i>>:<<j>>']:gchk += 1 & jump 'sameguycheck'
  727. if gchk > knownguy['<<i>>:<<j>>']:
  728. $cumowner['<<i>>:<<j>>:<<knownguy[''<<i>>:<<j>>'']>>'] = $sparrnam[idx]
  729. knownguy['<<i>>:<<j>>'] += 1
  730. cumcount['<<i>>:<<j>>'] += 1
  731. end
  732. else
  733. $cumowner['<<i>>:<<j>>:<<knownguy[''<<i>>:<<j>>'']>>'] = $sparrnam[idx]
  734. knownguy['<<i>>:<<j>>'] += 1
  735. cumcount['<<i>>:<<j>>'] += 1
  736. end
  737. end
  738. end
  739. end
  740. if idx > 0:idx -= 1 & jump 'spermitemloop'
  741. if i < 18:i += 1 & jump 'locationloop'
  742. killvar 'i'
  743. killvar 'idx'
  744. killvar 'j'
  745. end
  746. !!Clearing cum location array before positive entries are applied below
  747. killvar 'cumloc'
  748. i = 0
  749. :cumlocloop
  750. if i = 0:
  751. $txtloc = 'your <a href="exec:view''images/pc/body/cum/creampie/cumpussy'+rand(1,14)+'.jpg''">pussy</a>'
  752. elseif i = 1:
  753. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumpussy/cumpus'+rand(1,4)+'.jpg''">labia</a>'
  754. elseif i = 2:
  755. $txtloc = 'the front of your panties'
  756. elseif i = 3:
  757. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumanal/cumanal'+rand(1,11)+'.jpg''">ass</a>'
  758. elseif i = 4:
  759. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumass/cumass'+rand(1,6)+'.jpg''">butt</a>'
  760. elseif i = 5:
  761. $txtloc = 'the back of your panties'
  762. elseif i = 6:
  763. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumclothes/'+rand(1,3)+'.jpg''">clothes near your groin</a>'
  764. elseif i = 7:
  765. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumclothes/cumclothes'+rand(1,21)+'.jpg''">clothes</a>'
  766. elseif i = 8:
  767. $txtloc = 'your back'
  768. elseif i = 9:
  769. $txtloc = 'your legs'
  770. elseif i = 10:
  771. $txtloc = 'your arms'
  772. elseif i = 11:
  773. if pcs_haircol = 0:
  774. $cum_face_image = 'brown/'
  775. $cum_face_image += rand(1, 31)
  776. elseif pcs_haircol = 1:
  777. $cum_face_image = 'black/'
  778. $cum_face_image += rand(1, 23)
  779. elseif pcs_haircol = 2:
  780. $cum_face_image = 'red/'
  781. $cum_face_image += rand(1, 19)
  782. elseif pcs_haircol = 3:
  783. $cum_face_image = 'blonde/'
  784. $cum_face_image += rand(1, 25)
  785. elseif pcs_haircol > 3:
  786. $cum_face_image = 'custom/'
  787. $cum_face_image += rand(1, 20)
  788. end
  789. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumface/<<$cum_face_image>>.jpg''">face</a>'
  790. killvar 'cum_face_image'
  791. elseif i = 13:
  792. $txtloc = 'your hands'
  793. elseif i = 14:
  794. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumbelly/cumbelly'+rand(1,12)+'.jpg''">stomach</a>'
  795. elseif i = 15:
  796. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumtits/cumtits'+rand(1,19)+'.jpg''">breasts</a>'
  797. elseif i = 16:
  798. $txtloc = 'your hair</a>'
  799. elseif i = 17:
  800. $txtloc = 'in your vagina in a slipped condom'
  801. else
  802. $txtloc = 'the gusset of your panties</a>'
  803. end
  804. j = 0
  805. :ageloop
  806. if cumvolume['<<i>>:<<j>>'] > 0:
  807. !!Cum locations set for checking npc reactions
  808. cumloc[i] = 1
  809. !!amount setting
  810. if cumvolume['<<i>>:<<j>>'] > 250:
  811. !! 25 ml, about four-five load, gushing
  812. $txtamount = 'Enormous '
  813. elseif cumvolume['<<i>>:<<j>>'] > 100:
  814. !! 10 ml, about two load, flowing
  815. $txtamount = 'Huge '
  816. elseif cumvolume['<<i>>:<<j>>'] >= 20:
  817. !! 2 ml, seeping out
  818. $txtamount = 'Decent '
  819. else
  820. !! residue amount, no leakage
  821. $txtamount = 'Small '
  822. end
  823. !! if sperm age stage is 4, it means inside the body
  824. if j = 4:
  825. if (vibratorIN = 1 and i = 0) or (analplugin = 1 and i = 3):
  826. $txtproxy = 'being plugged in '
  827. elseif i = 0 and cumvolume['<<i>>:<<j>>'] < pcs_vag*5:
  828. $txtproxy = 'staying inside of '
  829. elseif i = 3 and pcs_ass <= 25:
  830. $txtproxy = 'staying inside of '
  831. else
  832. if cumvolume['<<i>>:<<j>>'] > 250:
  833. $txtproxy = 'gushing out of '
  834. elseif cumvolume['<<i>>:<<j>>'] > 100:
  835. $txtproxy = 'flowing out of '
  836. elseif cumvolume['<<i>>:<<j>>'] >= 40:
  837. $txtproxy = 'seeping out of '
  838. else
  839. $txtproxy = 'staying inside of '
  840. end
  841. end
  842. elseif j >= 5:
  843. !! if sperm age stage is over 4, meaning in condom
  844. if j = 5:
  845. $txtproxy = 'buried '
  846. elseif j = 6:
  847. $txtproxy = 'marinating '
  848. else
  849. $txtproxy = 'rotting '
  850. end
  851. if cumcondslip_deep > (vagina / 2): $txtproxy += 'deep '
  852. elseif j < 4 and j > 0:
  853. !!amount setting
  854. if cumvolume['<<i>>:<<j>>'] > 160:
  855. !! 10 ml, about two load, flowing
  856. $txtproxy = 'coating '
  857. elseif cumvolume['<<i>>:<<j>>'] > 40:
  858. !! 2 ml, seeping out
  859. $txtproxy = 'covering '
  860. else
  861. !! residue amount, no leakage
  862. $txtproxy = 'spattering '
  863. end
  864. if j = 1:
  865. $txtproxy += 'wetly '
  866. elseif j = 2:
  867. $txtproxy += 'dryly '
  868. else
  869. $txtproxy += 'powderly '
  870. end
  871. end
  872. $txtperson = ''
  873. if cumcount['<<i>>:<<j>>'] = 0:
  874. $txtiscum = 'some whitish substance '
  875. else
  876. $txtiscum = 'cum'
  877. if cumcount['<<i>>:<<j>>'] = knownguy['<<i>>:<<j>>']:
  878. !! everyone is known (one or more)
  879. if knownguy['<<i>>:<<j>>'] = 1:
  880. $txtperson = $npc_usedname[$cumowner['<<i>>:<<j>>:0']] + ' '
  881. else
  882. kmax = 0
  883. :nullocator1
  884. if $cumowner['<<i>>:<<j>>:<<kmax>>'] ! '':kmax += 1 & jump 'nullocator1'
  885. kmax -= 1
  886. k = 0
  887. :knownloop
  888. $txtperson += $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']]
  889. if k < kmax-1:$txtperson += ', ' & k += 1 & jump 'knownloop'
  890. k += 1
  891. $txtperson += ' and ' + $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']] + ' '
  892. end
  893. elseif knownguy['<<i>>:<<j>>'] = 0:
  894. !! no one is known (one or more)
  895. if cumcount['<<i>>:<<j>>'] = 1:
  896. $txtperson += 'some guy '
  897. else
  898. $txtperson += 'some guys '
  899. end
  900. else
  901. !! there are known and unknown guys in the mix
  902. if knownguy['<<i>>:<<j>>'] = 1:
  903. $txtperson = $npc_usedname[$cumowner['<<i>>:<<j>>:0']] + ' and some guy'
  904. else
  905. kmax = 0
  906. :nullocator2
  907. if $cumowner['<<i>>:<<j>>:<<kmax>>'] ! '':kmax += 1 & jump 'nullocator2'
  908. kmax -= 1
  909. k = 0
  910. :mixloop
  911. $txtperson += $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']] + ', '
  912. if k < kmax: k += 1 & jump 'mixloop'
  913. $txtperson += 'and some guy'
  914. end
  915. if cumcount['<<i>>:<<j>>'] - knownguy['<<i>>:<<j>>'] > 1:
  916. $txtperson += 's '
  917. else
  918. $txtperson += ' '
  919. end
  920. end
  921. end
  922. if j <= 4 and trt_cumeater = 1 and $txtiscum = 'cum':$txtiscum = '<a href="exec:gs ''cum_manage'', ''cumeater'', <<i>>"><font color=#0064FF>' + $txtiscum + '</font></a>'
  923. $txtiscum += ' from '
  924. if i = 0 and j = 4 and vibratorIN = 0 and pcs_vag*10 < cumvolume['<<i>>:<<j>>'] and cumvolume['<<i>>:<<j>>'] >= 20:
  925. if $pantyworntype ! 'none':
  926. $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + ' into your panties.</font></b>'
  927. else
  928. $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + ' down your legs.</font></b>'
  929. end
  930. elseif sparragestage >= 5:
  931. if cumcondslip_aware > 0:$stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + '.</font></b>'
  932. elseif j ! 0:
  933. $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + '.</font></b>'
  934. else
  935. $stat_msg += '<BR><b><font color="red">Your breath smells like sperm.</font></b>'
  936. end
  937. end
  938. if j < 7: j+=1 & jump 'ageloop'
  939. if i < 18: i+=1 & jump 'cumlocloop'
  940. killvar 'i'
  941. killvar 'j'
  942. killvar 'txtperson'
  943. killvar 'k'
  944. killvar 'kmax'
  945. killvar 'txtamount'
  946. killvar 'txtiscum'
  947. killvar 'txtperson'
  948. killvar 'txtproxy'
  949. killvar 'txtloc'
  950. killvar 'cumvolume'
  951. killvar 'cumcount'
  952. killvar 'knownguy'
  953. killvar 'cumowner'
  954. !!stds
  955. if Gerpes >= 10 and GenHerpes = 1:
  956. $stat_msg += '<BR><b><font color="red">On your pussy sores have appeared. This is genital herpes.</font></b>'
  957. elseif Gerpes >= 5 and GenHerpes =1:
  958. $stat_msg += '<BR><b><font color="red">Your pussy is flushed and highly itchy. This is genital herpes.</font></b>'
  959. elseif Gerpes >= 3 and Orerpes = 1:
  960. $stat_msg += '<BR><b><font color="red">You have cold Sores on your lips. these are signs of genital herpes.</font></b>'
  961. end
  962. if Gerpes >= 20 and GenHerpes =1:$stat_msg += '<BR> <b><font color="red">The sores also cover your ass.</font></b>'
  963. if Sifilis >= 50:
  964. $stat_msg += '<BR><b><font color="red">Syphilitic rashes cover your whole body.</font></b>'
  965. elseif Sifilis >= 21:
  966. $stat_msg += '<BR><b><font color="red">You have a single big, hard sore on the lip.</font></b>'
  967. end
  968. 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>'
  969. if Kandidoz > 30:$stat_msg += '<BR><b><font color="red">You have thrush.</font></b>'
  970. !!drug withdrawal
  971. 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>'
  972. 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>'
  973. if fingal > 0:$stat_msg += '<BR><b><font color="red">You have a black eye.</font></b>'
  974. ! WD: Bimbo look
  975. if bimbolevel > 0: $stat_msg += '<BR><<$bimbostatus>>'
  976. if $clothingworntype ! 'nude':
  977. if CloThinness = 6:
  978. if $clothingworntype = 'swimwear':
  979. $stat_msg += '<BR><b><font color = red>Your nipples are clearly showing through your transparent swimsuit.</font></b>'
  980. elseif $braworntype ! 'none':
  981. $stat_msg += '<BR><b><font color = red>Your bra is clearly showing through your transparent top.</font></b>'
  982. else
  983. $stat_msg += '<BR><b><font color = red>You are not wearing a bra and your breasts are fully on display through your transparent top.</font></b>'
  984. end
  985. elseif CloThinness = 5:
  986. if $clothingworntype = 'swimwear':
  987. $stat_msg += '<BR><b><font color = red>Your nipples are noticeably poking through your swimsuit.</font></b>'
  988. elseif $braworntype = 'none':
  989. $stat_msg += '<BR><b><font color = red>You are not wearing a bra and your nipples are noticably poking through the thin fabric of your top.</font></b>'
  990. end
  991. elseif CloThinness = 4:
  992. if $clothingworntype = 'swimwear':
  993. $stat_msg += '<BR><b><font color = red>Your nipples are very slightly poking through your swimsuit.</font></b>'
  994. elseif $braworntype = 'none':
  995. $stat_msg += '<BR><b><font color = red>You are not wearing a bra and your nipples are being subtly outlined through your top.</font></b>'
  996. end
  997. elseif $braworntype = 'none':
  998. $stat_msg += '<BR><b><font color = red>You are not wearing a bra.</font></b>'
  999. end
  1000. end
  1001. if $clothingworntype = 'nude':
  1002. if $pantyworntype ! 'none':
  1003. if $braworntype = 'none':
  1004. $stat_msg += '<BR><b><font color = red>You are only wearing your panties and your boobs sway invitingly as you walk.</font></b>'
  1005. else
  1006. $stat_msg += '<BR><b><font color = red>You are only wearing your underwear.</font></b>'
  1007. end
  1008. else
  1009. if $braworntype ! 'none':
  1010. $stat_msg += '<BR><b><font color = red>You are only wearing your bra, leaving your pussy and ass completely exposed.</font></b>'
  1011. else
  1012. if pcs_inhib < 5:
  1013. $stat_msg += '<BR><b><font color = red>You are completely naked, and it makes you feel nervous and ashamed.</font></b>'
  1014. elseif pcs_inhib < 20:
  1015. $stat_msg += '<BR><b><font color = orange>You are completely naked, you''re not too comfortable with nudity but it is a little exciting.</font></b>'
  1016. elseif pcs_inhib >= 90:
  1017. $stat_msg += '<BR><b><font color=#0064FF>You are completely naked, which is far better than having to wear clothes.</font></b>'
  1018. else
  1019. $stat_msg += '<BR><b><font color = #FF00FF>You are completely naked. It''s exciting and you feel tingly inside.</font></b>'
  1020. end
  1021. end
  1022. end
  1023. elseif $pantyworntype = 'none' and $clothingworntype ! 'swimwear':
  1024. if PCloStyle = 4:
  1025. $stat_msg += '<BR><b><font color= #AB052A>You are not wearing panties, but you are dressed as a hooker, so that''s hardly surprising.</font></b>'
  1026. elseif PCloBimbo = 1 or bimbolevel > 0 and PCloSkirt > 3 and cheatBimbo = 0:
  1027. $stat_msg += '<BR><b><font color = #FF00FF>You like, totally forgot to put on any panties. You are such a bimbo.</font></b>'
  1028. elseif $clothingworntype = 'cheap' and clothingwornnumber = '414':
  1029. $stat_msg += '<BR><b><font color = "yellow">You are wearing an old hessian sack the hunters gave you.</font></b>'
  1030. elseif PCloSkirt > 3:
  1031. if pcs_inhib > 50:
  1032. $stat_msg += '<BR><b><font color=#0064FF>You feel liberated not wearing panties as your naked ass flashes from under your short skirt.</font></b>'
  1033. else
  1034. $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>'
  1035. end
  1036. elseif PCloPants > 0:
  1037. if $braworntype = 'none':
  1038. $stat_msg += '<BR><b><font color="red">You aren''t wearing underwear, and your bare pussy is rubbing against your clothing.</font></b>'
  1039. else
  1040. $stat_msg += '<BR><b><font color="red">You aren''t wearing panties, and your bare pussy is rubbing against your clothing.</font></b>'
  1041. end
  1042. elseif towel = 1:
  1043. $stat_msg += '<BR><b><font color = red>Your naked body is covered only by a short towel.</font></b>'
  1044. elseif $clothingworntype ! 'nude':
  1045. if $braworntype = 'none':
  1046. $stat_msg += '<BR><b><font color = red>You are not wearing any underwear.</font></b>'
  1047. else
  1048. $stat_msg += '<BR><b><font color="red">You are not wearing panties.</font></b>'
  1049. end
  1050. end
  1051. elseif PCloBimbo = 1 and cheatBimbo = 0:
  1052. $stat_msg += '<BR><b><font color = #FF00FF>You are dressed as a bimbo</font></b>'
  1053. elseif $clothingworntype = 'cheap' and clothingwornnumber = '414':
  1054. $stat_msg += '<BR><b><font color = "yellow">You are wearing an old hessian sack the hunters gave you.</font></b>'
  1055. end
  1056. if mosol >= 50:
  1057. $stat_msg += '<BR><b><font color="red">Your pussy itches a great deal and is affecting your mood, you should use some cream or stop wearing pants without underwear.</font></b>'
  1058. elseif mosol >= 30:
  1059. $stat_msg += '<BR><b><font color="red">Your pussy feels a little itchy, it seems to be from rubbing against your clothing.</font></b>'
  1060. end
  1061. if analplugIN = 1:$stat_msg += '<BR><b><font color = #FF1493>You have a butt plug inserted in your ass.</font></b>'
  1062. if vibratorin = 1:$stat_msg += '<BR><b><font color = #FF1493>You have a vibrator inserted in your vagina.</font></b>'
  1063. !$stat_msg += '<BR>'
  1064. if young_shop_work = 1:
  1065. if hour = 16 and minut <= 5 and week < 6 and inWorkYoungShop = 0:
  1066. 'You are late for work at Pussy-Cats.'
  1067. elseif hour = 16 and week < 6 and inWorkYoungShop = 0 and misscheck ! daystart:
  1068. misscheck = daystart
  1069. young_shop_miss += 1
  1070. $stat_msg += '<BR><b><font color="red">You missed work.</font></b>'
  1071. elseif (hour = 14 or hour = 15) and week < 6:
  1072. $stat_msg += '<BR><b><font color="red">You start work at Pussy-Cats today at 16:00.</font></b>'
  1073. end
  1074. end
  1075. if courthearing_date - 1 = daystart: $stat_msg += '<BR><b><font color="red">You have a court hearing tomorrow between 07:00 and 11:00.</font></b>'
  1076. if courthearing_date = daystart and hour < 11: $stat_msg += '<BR><b><font color="red">You have a court hearing today between 07:00 and 11:00.</font></b>'
  1077. if young_shop_work1 = 1:
  1078. if hour = 9 and minut <= 5 and week >= 6 and inWorkYoungShop = 0:
  1079. $stat_msg += 'You are late for work at Pussy-Cats.'
  1080. elseif hour = 9 and week >= 6 and inWorkYoungShop = 0 and misscheck ! daystart:
  1081. misscheck = daystart
  1082. young_shop_miss += 1
  1083. $stat_msg += '<BR><b><font color="red">You missed work.</font></b>'
  1084. elseif (hour = 7 or hour = 8) and week >= 6:
  1085. $stat_msg += '<BR><b><font color="red">By 9:00 you have to be at Pussy-Cats to start work.</font></b>'
  1086. end
  1087. end
  1088. if young_shop_work2 = 1:
  1089. if hour = 9 and minut <= 5 and week < 6 and inWorkYoungShop = 0:
  1090. 'You are late for work at Pussy-Cats.'
  1091. elseif hour = 9 and week < 6 and inWorkYoungShop = 0 and misscheck ! daystart:
  1092. misscheck = daystart
  1093. young_shop_miss += 1
  1094. $stat_msg += '<BR><b><font color="red">You missed work.</font></b>'
  1095. elseif (hour = 7 or hour = 8) and week < 6:
  1096. $stat_msg += '<BR><b><font color="red">By 9:00 you have to be at Pussy-Cats to start work.</font></b>'
  1097. end
  1098. end
  1099. if workrin = 1:
  1100. if week = 2 or week = 4 or week = 6:
  1101. if hour = 7:$stat_msg += '<BR><b><font color="red">At 8 o''clock you start work on the market.</font></b>'
  1102. if hour = 8:$stat_msg += '<BR><b><font color="red">You need to work on the market now.</font></b>'
  1103. end
  1104. end
  1105. if frost > 0:
  1106. if frost <= 5:
  1107. $stat_msg += '<BR><b><font>You are a little chilly.</font></b>'
  1108. elseif frost < 11:
  1109. $stat_msg += '<BR><b><font color="red">You are cold.</font></b>'
  1110. else
  1111. $stat_msg += '<BR><b><font color="red">You are freezing.</font></b>'
  1112. end
  1113. end
  1114. if sick > 0:
  1115. if sick = 1:
  1116. $stat_msg += '<BR><b><font color="red">This is not good, a tickle in the throat and a little runny nose.</font></b>'
  1117. elseif sick < 24:
  1118. $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>'
  1119. elseif sick < 48:
  1120. $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>'
  1121. elseif sick < 72:
  1122. $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>'
  1123. else
  1124. $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>'
  1125. end
  1126. end
  1127. if hypnoAddict > 0:
  1128. if hypnoWithdrawal = 1:
  1129. if missCum >= timeTresh:
  1130. $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>'
  1131. else
  1132. $stat_msg += '<BR><b><font color="red">You feel like talking to your therapist. You miss your sessions.</font></b>'
  1133. end
  1134. elseif hypnoWithdrawal = 2:
  1135. if missCum >= timeTresh:
  1136. $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>'
  1137. else
  1138. $stat_msg += '<BR><b><font color="red">You need to talk to your therapist. You feel unbalanced without your sessions.</font></b>'
  1139. end
  1140. else
  1141. 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>'
  1142. end
  1143. end
  1144. if $mudnerd ! '':$stat_msg += '<BR><<$mudnerd>>'
  1145. if home_owned[1] > 0:
  1146. $streetev_home = 'your apartment'
  1147. elseif tanwork = 1:
  1148. $streetev_home = 'Tanya''s apartment'
  1149. elseif student > 0:
  1150. $streetev_home = 'your dorm'
  1151. elseif home_owned[2] = 1:
  1152. $streetev_home = 'outside your apartment block'
  1153. else
  1154. $streetev_home = 'the train station'
  1155. end
  1156. if hour < meethour[0] and svidanie[0] = 1:$stat_msg += '<BR><<$loverdesc[0]>> will be waiting for you near <<$streetev_home>> at <<meethour[0]>>:00.'
  1157. if hour = meethour[0] and svidanie[0] = 1:$stat_msg += '<BR><b><font color="red"><<$loverdesc[0]>> is waiting for you by <<$streetev_home>>.</font></b>'
  1158. if meetday[0] < daystart and svidanie[0] = 1:pcs_lovers_rel[0] -= 10 & svidanie[0] = 0
  1159. if hour < meethour[1] and svidanie[1] = 1:$stat_msg += '<BR><<$loverdesc[1]>> will be waiting for you near <<$streetev_home>> at <<meethour[1]>>:00.'
  1160. if hour = meethour[1] and svidanie[1] = 1:$stat_msg += '<BR><b><font color="red"><<$loverdesc[1]>> is waiting for you by <<$streetev_home>>.</font></b>'
  1161. if meetday[1] < daystart and svidanie[1] = 1:pcs_lovers_rel[1] -= 10 & svidanie[1] = 0
  1162. if hour < meethour[2] and svidanie[2] = 1:$stat_msg += '<BR><<$loverdesc[2]>> will be waiting for you near <<$streetev_home>> at <<meethour[2]>>:00.'
  1163. if hour = meethour[2] and svidanie[2] = 1:$stat_msg += '<BR><b><font color="red"><<$loverdesc[2]>> is waiting for you by <<$streetev_home>>.</font></b>'
  1164. if meetday[2] < daystart and svidanie[2] = 1:pcs_lovers_rel[2] -= 10 & svidanie[2] = 0
  1165. if StrongNarkota > 20 or jointhigh > 0:$stat_msg += '<BR><b><font color="red">You are stoned.</font></b>'
  1166. if amphHigh > 0: $stat_msg += '<BR><b><font color="red">You feel a little wired.</font></b>'
  1167. if alko > 0:
  1168. if alko = 1:
  1169. slut_bonus = 0
  1170. $stat_msg += '<BR><b>You feel a little buzz from drinking.</b>'
  1171. elseif alko < 4:
  1172. slut_bonus = 10
  1173. $stat_msg += '<BR><b><font color="orange">You''re feeling a bit tipsy.</font></b>'
  1174. elseif alko < 6:
  1175. slut_bonus = 20
  1176. $stat_msg += '<BR><b><font color="red">You''re drunk.</font></b>'
  1177. elseif alko < 10:
  1178. slut_bonus = 30
  1179. $stat_msg += '<BR><b><font color="red">You''re very drunk.</font></b>'
  1180. else
  1181. slut_bonus = 50
  1182. $stat_msg += '<BR><b><font color="red">You''re wasted.</font></b>'
  1183. end
  1184. else
  1185. killvar 'slut_bonus'
  1186. end
  1187. if StoryLine = 1:
  1188. if day = nyp_day 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.'
  1189. 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.'
  1190. 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.'
  1191. if week = 6 and hour < 9 and detention_set = 1 and SchoolAtestat = 0:$stat_msg += '<BR><b>You have a detention this morning and must be at school between 8 and 9.</b>'
  1192. if gopnik_initiation = 1 and gopnik_initiation_day = daystart and hour > 15 and hour < 21: $stat_msg += '<BR><b>Meet Lena and Lera at the apartment garages at eight</b>'
  1193. if nerd_night_game = 1 and nerd_night_game_day = daystart and hour > 15 and hour < 21: $stat_msg += '<BR><b>Join nerds at the community center at eight</b>'
  1194. if InvitationToDimkaNYparty = 1 and month = 12 and day = 31: $stat_msg += '<BR><b>Go to the residential area between 15:00 and 18:00 to go to Dimka''s New Year party.</b>'
  1195. end
  1196. if home_owned[1] = 1 and home_owned[4] > 0:
  1197. $stat_msg += '<BR>You have rented an apartment in the city residential area, which is paid up for <b><<ArendHouseSL>></b> days, and you also have an apartment in Pushkin, which is paid up for <b><<ArendHouseSL4>></b> days. Utilities are due on the 25th of <<$month>>.'
  1198. elseif home_owned[1] = 1:
  1199. $stat_msg += '<BR>You have rented an apartment in the city residential area, and you''re paid up for <<ArendHouseSL>> days. Utilities are due on the 25th of <<$month>>.'
  1200. elseif home_owned[4] > 0:
  1201. $stat_msg += '<BR>You have rented an apartment in Pushkin, and you''re paid up for <<ArendHouseSL4>> days. Utilities are due on the 25th of <<$month>>.'
  1202. end
  1203. if model > 0 and model_week = (daystart - week) / 7 and model_job_week >= 2:
  1204. $stat_msg += '<BR><b>You have no more modelling jobs available this week.</b>'
  1205. elseif model > 0 and model_week < (daystart - week) / 7 and model_job_week = 1:
  1206. $stat_msg += '<BR><b>You can get paid for 1 more modelling job this week.</b>'
  1207. elseif model > 0 and model_week < (daystart - week) / 7 and model_job_week < 1:
  1208. $stat_msg += '<BR><b>You can get paid for 2 modelling jobs this week.</b>'
  1209. end
  1210. if pornstack > 0:
  1211. aa = 0
  1212. :pfilmtime
  1213. if aa < 200 and pfilmday[aa] = 0: aa += 1 & jump 'pfilmtime'
  1214. end
  1215. if pornstack > 0 and pfilmday[0] = 0:
  1216. if pfilmday[1] = 0:
  1217. $stat_msg += '<br><b>You will star in another porno in <<aa>> days.</b>'
  1218. else
  1219. $stat_msg += '<br><b>You have a porno shoot scheduled tomorrow.</b>'
  1220. end
  1221. end
  1222. if pfilmday[0] > 0:
  1223. if pornnow = 1:
  1224. $stat_msg += '<br><b>You are at a porn shooting.</b>'
  1225. else
  1226. if hour < 11: $stat_msg += '<br><b>You are expected in the porno studio at 10:00.</b>'
  1227. if hour >= 11 and hour < 13: $stat_msg += '<br><b>You should be at the porno studio, shooting!</b>'
  1228. if hour >= 13: $stat_msg += '<br><b>You missed a scheduled porno shoot!</b>'
  1229. end
  1230. end
  1231. if pornmiss = 1: $stat_msg += '<br><b>You missed a scheduled porno shoot!</b>'
  1232. if prodcosttrue > 0: $stat_msg += '<br><b>You owe to the porn studio <<prodcost>>?</b>'
  1233. if firstkasting > 0 and pfilmNO < 1: $stat_msg += '<br><b>You can contract '+iif(pornstack < 9,'up to <<10-pornstack>> porn shoots','<<10-pornstack>> porn shoot')+' at the Porn Studio.</b>'
  1234. if hour < 22 and week >= 2 and week <= 4 and workKafe = 1:$stat_msg += '<BR><b><font color="red">Today you have a shift at The Roadhouse cafe starting at 11:00.</font></b>'
  1235. if hour < 17 and week < 5 and workSec >= 1 or hour < 17 and week < 5 and workSec = 1:$stat_msg += '<BR><b><font color="red">Today you have a shift as a secretary at Titran-Express from 9:00 to 17:00</font></b>'
  1236. if hour < 17 and week < 5 and PersSecWork = 1:$stat_msg += '<BR><b><font color="red">Today you have a shift as a secretary at Diner Bystroeshka from 9:00 to 17:00</font></b>'
  1237. 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>'
  1238. 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>'
  1239. 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 city residential area clinic. Your shift starts at 8:00.</font></b>'
  1240. 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>'
  1241. if leonidVisit = 1 and hour < 21 and hour > 6: $stat_msg += '<br><b>You have to serve Leonid at 20:00 in his Pavlovsk office!</b>'
  1242. if npc_QW['A113'] = 1:
  1243. $stat_msg += '<br>You owe Vadim Bely <<belgangpay>> <b><b>₽</b></b> and you need to pay him <<belgangpayweek>> <b>₽</b></b> this week.'
  1244. end
  1245. gs 'brother', 'brotherSexCount'
  1246. !!zero checks marriage
  1247. proverka1 = 0
  1248. proverka2 = 0
  1249. proverka3 = 0
  1250. proverka4 = 0
  1251. proverka5 = 0
  1252. if boletus + bilberry > 0:
  1253. if boletus + bilberry >= 10:
  1254. $stat_msg +='<br><b><font color = Olive>You have a full basket. </b></font> '
  1255. else
  1256. $stat_msg +='<br><b><font color = Olive>In Your basket: </b></font>'
  1257. end
  1258. if boletus > 0:$stat_msg +='Mushrooms: <b><<boletus>></b> kg. '
  1259. if bilberry > 0:$stat_msg +='Berries: <b><<bilberry>></b> kg. '
  1260. end
  1261. if disable_LoadSave = 0:
  1262. $stat_msg += '<br><br><a href="exec:savegame ''quicksave.sav'' && pl''Quicksave Done''"><img src="images/system/icon/stat_qsave.png"></a> <a href="exec:savegame"><img src="images/system/icon/stat_save.png"></a> <a href="exec:opengame"><img src="images/system/icon/stat_load.png"></a> <a href="exec:if input(''Input Anything to confirm Quick Load'') ! null: opengame ''quicksave.sav''"><img src="images/system/icon/stat_qload.png"></a>'
  1263. elseif disable_LoadSave = 2:
  1264. $stat_msg += '<br><br><a href="exec:savegame ''quicksave.sav'' && pl''Quicksave Done''">Quick 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''">Quick Load</a>'
  1265. end
  1266. $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>'
  1267. if Enable_statimg_loc = 2:
  1268. $stat_msg += '<br><<$stat_imgtool_msg>><br><<$stat_imgextra_msg>>'
  1269. end
  1270. killvar 'stat_imgtool_msg'
  1271. killvar 'stat_imgextra_msg'
  1272. if Enable_statfsize > 0: $stat_msg += '</font>' & !disable this, all texts comes from pl will have the same font size, like[time]
  1273. if Enable_faceturn = 1: view FUNC('$face_image')
  1274. if Enable_Android = 0:
  1275. pl '<<$stat_msg>>'
  1276. else
  1277. '<<$stat_android>>'
  1278. $stat_msg = 'Android mode, <a href="exec:gs ''$menu_obnovit''">Refresh</a><<$stat_msg>>'
  1279. end
  1280. --- stat_display ---------------------------------