stat_display.qsrc 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  1. # stat_display
  2. gs 'outdoors', 'main'
  3. !!Beginning Description
  4. !!----------------image Extra messages, start--------------------------
  5. $stat_imgtool_msg=''
  6. $stat_imgextra_msg=''
  7. if Enable_showstatimg = 1:
  8. !There are 3 display mode, with toobar / top / bottom, controlled by Enable_statimg_loc
  9. if Enable_statimg_face = 0:
  10. $stat_imgtool_msg += '<a href="exec:Enable_statimg_face = 1 & gs ''$menu_obnovit''">◇Face</a>'
  11. else
  12. $stat_imgtool_msg += '<a href="exec:Enable_statimg_face = 0 & gs ''$menu_obnovit''">◆Face</a>'
  13. $img_temp = FUNC('$face_image')
  14. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  15. end
  16. if Enable_statimg_body = 0:
  17. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_body = 1 & gs ''$menu_obnovit''">◇Body</a>'
  18. else
  19. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_body = 0 & gs ''$menu_obnovit''">◆Body</a>'
  20. $img_temp = FUNC('$body_image','body')
  21. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  22. end
  23. if Enable_statimg_coat = 0:
  24. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_coat = 1 & gs ''$menu_obnovit''">◇Coat</a>'
  25. else
  26. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_coat = 0 & gs ''$menu_obnovit''">◆Coat</a>'
  27. $img_temp = FUNC('$body_image','coat')
  28. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  29. end
  30. if Enable_statimg_cloth = 0:
  31. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_cloth = 1 & gs ''$menu_obnovit''">◇Clothes</a>'
  32. else
  33. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_cloth = 0 & gs ''$menu_obnovit''">◆Clothes</a>'
  34. $img_temp = FUNC('$body_image','clothes')
  35. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  36. end
  37. if Enable_statimg_bra = 0:
  38. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_bra = 1 & gs ''$menu_obnovit''">◇Bra</a>'
  39. else
  40. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_bra = 0 & gs ''$menu_obnovit''">◆Bra</a>'
  41. $img_temp = FUNC('$body_image','bra')
  42. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  43. end
  44. if Enable_statimg_panties = 0:
  45. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_panties = 1 & gs ''$menu_obnovit''">◇Panties</a>'
  46. else
  47. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_panties = 0 & gs ''$menu_obnovit''">◆Panties</a>'
  48. $img_temp = FUNC('$body_image','panties')
  49. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  50. end
  51. if Enable_statimg_shoes = 0:
  52. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_shoes = 1 & gs ''$menu_obnovit''">◇Shoes</a>'
  53. else
  54. $stat_imgtool_msg += ' <a href="exec:Enable_statimg_shoes = 0 & gs ''$menu_obnovit''">◆Shoes</a>'
  55. $img_temp = FUNC('$body_image','shoes')
  56. if $img_temp ! null: $stat_imgextra_msg += '<a href="exec:view ''<<$img_temp>>''"><img <<$set_statimgh>> src="<<$img_temp>>"></a> '
  57. end
  58. if $menu_loc ! '': $stat_imgtool_msg += ' <a href="exec:gs ''Cheatmenu_din'' & dynamic $cheatmenu[''setting'']">◎Settings</a>'
  59. end
  60. !!----------------image Extra messages, end --------------------------
  61. if Enable_statimg_loc = 1: $stat_msg = '<<$stat_imgtool_msg>><br><<$stat_imgextra_msg>><br><<$stat_msg>>'
  62. $stat_android = '<b><<$mid(100+hour,2,2)>>:<<$mid(100+minut,2,2)>></b>'
  63. $stat_msg += '<table><tr><td><a href="exec:msg ''<<$weather>>''"><<$weatherImage>></a></td><td><<$temperature>></td></tr></table>'
  64. if Enable_statfsize>0: $stat_msg = '<font size=<<Enable_statfsize>>><<$stat_msg>>'
  65. $stat_disable_msg = 'Menu is disabled for this event.'
  66. !$stat_msg += '<<$weather>><BR>'
  67. !pl '<<$weatherImage>>'
  68. if timeHidden = 0: $stat_msg += '<BR><<$stat_android>> <<$week[week]>> <<day>> <<$month>> <<year>>'
  69. $stat_android += '<<$week[week]>> <<day>>/<<month>>, <<money>> ₽, <a href="exec:clr & pl $stat_android">Status</a>'
  70. ! $stat_android for short desc in android mode, $stat_msg for status bar.
  71. if StoryLine > 0 and SchoolAtestat ! 1 and $holyday ! '': $stat_msg += '<BR><<$holyday>>' & $stat_msg += '<BR>'
  72. if birthday = day and birthmonth = month: $stat_msg += '<BR><b>Today is your birthday.</b>' & $stat_msg += '<BR>'
  73. !New icon based menu.
  74. if MagikDostup = 0:
  75. $journal_tooltip = 'Spellbook & Journal'
  76. $journalIcon = 'journal_magic.png'
  77. else
  78. $journal_tooltip = 'Journal'
  79. $journalIcon = 'journal_norm.png'
  80. end
  81. if menu_off = 0:
  82. $menuBarTab = '<table><tr>'
  83. $menuBarTab += '<td><a href="exec:killvar ''menu_page'' & gs ''obj_din'', ''description''"><img title="Character description" src="images/system/menu icons/icon_character.png"></a></td>'
  84. $menuBarTab += '<td><a href="exec:killvar ''menu_page'' & gs ''obj_din'', ''face''"><img title="Looks (Face, body, clothing,...)"src="images/system/menu icons/icon_lookself.png"></a></td>'
  85. if bag > 0: $menuBarTab += '<td><a href="exec:gs ''din_bad'', ''d_bag''"><img title="Your purse"src="images/system/menu icons/icon_purse.png"></a></td>'
  86. $menuBarTab += '<td><a href="exec:gs ''telefon'',''Phone_menu''"><img title="Your phone" src="images/system/menu icons/icon_phone.png"></a></td>'
  87. $menuBarTab += '<td><a href="exec:gs ''obj_din'', ''records''"><img title="<<$journal_tooltip>>" src="images/system/menu icons/<<$journalIcon>>"></a></td>'
  88. $menuBarTab += '<td><a href="exec:killvar ''menu_page'' & gs''$menu_setting''"><img title="Menu & Cheatmenu" src="images/system/menu icons/icon_menu.png"></a></td>'
  89. $menuBarTab += '</tr></table>'
  90. $stat_msg += func('cleanHTML',$menuBarTab)
  91. killvar '$menuBarTab'
  92. elseif menu_off = 1:
  93. $menuBarTab = '<table><tr>'
  94. $menuBarTab += '<td><a href="exec:killvar ''menu_page'' & gs ''obj_din'', ''menu_disabled''"><img title="<<$stat_disable_msg>>" src="images/system/menu icons/icon_character.png"></a></td>'
  95. $menuBarTab += '<td><a href="exec:killvar ''menu_page'' & gs ''obj_din'', ''menu_disabled''"><img title="<<$stat_disable_msg>>" src="images/system/menu icons/icon_lookself.png"></a></td>'
  96. if bag > 0:
  97. $menuBarTab += '<td><a href="exec:gs ''obj_din'', ''menu_disabled''"><img title="<<$stat_disable_msg>>" src="images/system/menu icons/icon_purse.png"></a></td>'
  98. end
  99. $menuBarTab += '<td><a href="exec:gs ''telefon'',''Phone_menu''"><img title="<<$stat_disable_msg>>" src="images/system/menu icons/icon_phone.png"></a></td>'
  100. $menuBarTab += '<td><a href="exec:gs ''obj_din'', ''menu_disabled''"><img title="<<$stat_disable_msg>>" src="images/system/menu icons/<<$journalIcon>>"></a></td>'
  101. $menuBarTab += '<td><a href="exec:killvar ''menu_page'' & gs''obj_din'', ''menu_disabled''"><img title="<<$stat_disable_msg>>" src="images/system/menu icons/icon_menu.png"></a></td>'
  102. $menuBarTab += '</tr></table>'
  103. $stat_msg += func('cleanHTML',$menuBarTab)
  104. killvar '$menuBarTab'
  105. end
  106. !!----------------- Money -------------------------------
  107. $pockets = 'Pockets'
  108. if bag > 0: $pockets = 'Purse'
  109. if bankAccount = 0 and stolmoney = 0:
  110. $stat_msg += 'You have <b><<money>> ₽</b> in your <<$pockets>>.'
  111. else
  112. !combine money status to single line
  113. $stat_msg += '<<$pockets>>: <b><<money>> ₽</b>'
  114. if stolmoney > 0: $stat_msg += ', Drawer <b><<stolmoney>> ₽</b>'
  115. if bankAccount = 1:
  116. if karta >= 0:
  117. $stat_msg += ', Bank: <b><<karta>> ₽</b>'
  118. else
  119. $stat_msg += '<font color="red">Your bank account is overdrawn by <b><<karta>> ₽</b>!!</font>'
  120. end
  121. end
  122. end
  123. !!-----------------Status Icons (Start)------------------
  124. if cheatStatusIcons = 0 or disable_show_icons = 0:
  125. if disable_show_icons = 0:
  126. cheatStatusIcons = 0
  127. elseif disable_show_icons = 1:
  128. cheatStatusIcons = 1
  129. end
  130. $stat_msg += '<br><br>'
  131. !!Row 1: Appearance
  132. $statusIconBarTab = '<table><tr>'
  133. $stat_hotcat_msg = 'People would rate your appearance as a <<hotcat>> out of 10.<br><img src="<<FUNC(''$face_image'')>>">'
  134. $statusIconBarTab += '<td><a href="exec:msg $stat_hotcat_msg"><img title="You are a <<hotcat>> out of 10." height = 54 src="images/system/icon/status_icons/appearance.png"></a></td>'
  135. if pcs_makeup < 5:
  136. $statusIconBarTab += '<td><a href="exec:msg $pcs_makeup_msg"><img title="<<$pcs_makeup_tooltip>>" height = 54 src="images/system/icon/status_icons/makeup_'+pcs_makeup+'.png"></a></td>'
  137. elseif pcs_makeup = 5:
  138. $statusIconBarTab += '<td><a href="exec:msg $pcs_makeup_msg"><img title="<<$pcs_makeup_tooltip>>" height = 54 src="images/system/icon/status_icons/makeup_4.png"></a></td>'
  139. end
  140. if greben = 0 or pcs_hairbsh = 1:
  141. $stat_brush_msg = 'Your hair is <<$pcs_hairbsh>>.'
  142. $statusIconBarTab += '<td><a href="exec:msg $stat_brush_msg"><img title="<<$stat_brush_msg>>" height = 54 src="images/system/icon/status_icons/hair_'+pcs_hairbsh+'.png"></a></td>'
  143. else
  144. $statusIconBarTab += '<td><a href="exec: minut += 2 & pcs_hairbsh = 1 & gs ''stat''"><img title="Click to brush your hair." height = 54 src="images/system/icon/status_icons/hair_0.png"></a></td>'
  145. end
  146. if pcs_lipbalm > 0: $statusIconBarTab += '<td><a href="exec: ''Your lips are covered in moisturizing balm.''"><img title="You have applied lip balm." height = 54 src="images/system/icon/status_icons/lipstick.png"></a></td>'
  147. if false_lashes >= 1:
  148. $stat_lashes_msg = 'You''re wearing false'+iif(pcs_lashes = 4, ' mink ', ' ')+'lashes.'
  149. $statusIconBarTab +='<td><a href="exec: $stat_lashes_msg"><img title="<<$stat_lashes_msg>>" height = 54 src="images/system/icon/status_icons/lashes.png"></a></td>'
  150. end
  151. if cheatNoSweat = 0:
  152. if pcs_sweat < 0:
  153. pcs_sweat = 0
  154. elseif pcs_sweat > 69:
  155. pcs_sweat = 69
  156. end
  157. if pcs_sweat > 20:
  158. if pcs_sweat > 60:
  159. $stat_sweat_msg = 'You are dripping wet from sweat and smell like a gym sock.'
  160. elseif pcs_sweat > 50:
  161. $stat_sweat_msg = 'You really stink.'
  162. elseif pcs_sweat > 40:
  163. $stat_sweat_msg = 'You stink.'
  164. elseif pcs_sweat > 30:
  165. $stat_sweat_msg = 'You are a little smelly.'
  166. else
  167. $stat_sweat_msg = 'You''re sweating.'
  168. end
  169. $statusIconBarTab += '<td><a href="exec:msg $stat_sweat_msg"><img title="<<$stat_sweat_msg>>" height = 54 src="images/system/icon/status_icons/need_shower.png"></a></td>'
  170. end
  171. end
  172. if pcs_leghair > 3 or (pubestyle = 1 and pcs_pubes > 3) or ((pubestyle >= 2 and pubestyle <= 7) and pcs_pubes >= 15) or (pubestyle = 8 and pcs_pubes >= 20) or (pubestyle = 9 and pcs_pubes >= 25) or (pubestyle = 10 and pcs_pubes >= 30):
  173. if (pubestyle = 1 and pcs_pubes > 3) or ((pubestyle >= 2 and pubestyle <= 7) and pcs_pubes >= 15) or (pubestyle = 8 and pcs_pubes >= 20) or (pubestyle = 9 and pcs_pubes >= 25) or (pubestyle = 10 and pcs_pubes >= 30):
  174. $stat_shave_msg = 'You need to shave your'+iif(pcs_leghair > 3, ' legs and ', ' ')+'pussy.'
  175. elseif pcs_leghair > 3:
  176. $stat_shave_msg = 'You need to shave your legs.'
  177. end
  178. $statusIconBarTab += '<td><a href="exec:msg $stat_shave_msg"><img title="<<$stat_shave_msg>>" height = 54 src="images/system/icon/status_icons/need_shave.png"></a></td>'
  179. end
  180. $statusIconBarTab += '</tr><tr>'
  181. !!Row 2: Mood, Arousal, Hunger, Thirst, Health without STDs...
  182. willpower_percent = (100 * pcs_willpwr)/willpowermax
  183. if willpower_percent > 60:
  184. $stat_willpower_msg = 'You feel confident and in control. You still have <<pcs_willpwr>> (<<willpower_percent>>%) of your willpower left.'
  185. $stat_willpower_tooltip = 'You have <<pcs_willpwr>> (<<willpower_percent>>%) of your willpower.'
  186. $statusIconBarTab += '<td><a href="exec:msg $stat_willpower_msg"><img title="<<$stat_willpower_tooltip>>" height = 54 src="images/system/icon/status_icons/willpower_high.png"></a></td>'
  187. elseif willpower_percent > 30:
  188. $stat_willpower_msg = 'You feel like you have less control over yourself than usual. You have <<pcs_willpwr>> (<<willpower_percent>>%) of your willpower left.'
  189. $stat_willpower_tooltip = 'You have <<pcs_willpwr>> (<<willpower_percent>>%) of your willpower.'
  190. $statusIconBarTab += '<td><a href="exec:msg $stat_willpower_msg"><img title="<<$stat_willpower_tooltip>>" height = 54 src="images/system/icon/status_icons/willpower_med.png"></a></td>'
  191. else
  192. $stat_willpower_msg = 'In your current state, you could easily be pressured into doing things against your will. You have <<pcs_willpwr>> (<<willpower_percent>>%) of your willpower left.'
  193. $stat_willpower_tooltip = 'You only have <<pcs_willpwr>> (<<willpower_percent>>%) of your willpower.'
  194. $statusIconBarTab += '<td><a href="exec:msg $stat_willpower_msg"><img title="<<$stat_willpower_tooltip>>" height = 54 src="images/system/icon/status_icons/willpower_low.png"></a></td>'
  195. end
  196. if pcs_mood >= 80:
  197. $stat_mood_msg = 'You are in a great mood.'
  198. $statusIconBarTab += '<td><a href="exec:msg $stat_mood_msg"><img title="<<$stat_mood_msg>>" height = 54 src="images/system/icon/status_icons/mood_1.png"></a></td>'
  199. elseif pcs_mood >= 60:
  200. $stat_mood_msg = 'You are in an OK mood.'
  201. $statusIconBarTab += '<td><a href="exec:msg $stat_mood_msg"><img title="<<$stat_mood_msg>>" height = 54 src="images/system/icon/status_icons/mood_2.png"></a></td>'
  202. elseif pcs_mood >= 40:
  203. $stat_mood_msg = 'You are in a good mood.'
  204. $statusIconBarTab += '<td><a href="exec:msg $stat_mood_msg"><img title="<<$stat_mood_msg>>" height = 54 src="images/system/icon/status_icons/mood_3.png"></a></td>'
  205. elseif pcs_mood >= 20:
  206. $stat_mood_msg = 'You are in a bad mood.'
  207. $statusIconBarTab += '<td><a href="exec:msg $stat_mood_msg"><img title="<<$stat_mood_msg>>" height = 54 src="images/system/icon/status_icons/mood_4.png"></a></td>'
  208. elseif pcs_mood >= 5:
  209. $stat_mood_msg = 'You are in a terrible mood.'
  210. $statusIconBarTab += '<td><a href="exec:msg $stat_mood_msg"><img title="<<$stat_mood_msg>>" height = 54 src="images/system/icon/status_icons/mood_5.png"></a></td>'
  211. else
  212. $stat_mood_msg = 'You are really depressed and need to improve your mood.'
  213. $stat_mood_tooltip = 'You are really depressed.'
  214. $statusIconBarTab += '<td><a href="exec:msg $stat_mood_msg"><img title="<<$stat_mood_tooltip>>" height = 54 src="images/system/icon/status_icons/mood_6.png"></a></td>'
  215. end
  216. if pcs_horny > 90:
  217. $stat_arousal_msg = 'You can''t stop thinking about sex, you''re soaked between your legs from your juices.'
  218. $stat_arousal_tooltip = 'You can''t stop thinking about sex'
  219. $statusIconBarTab += '<td><a href="exec:msg $stat_arousal_msg"><img title="<<$stat_arousal_tooltip>>" height = 54 src="images/system/icon/status_icons/arousal_high.png"></a></td>'
  220. elseif pcs_horny > 60:
  221. $stat_arousal_msg = 'You''re a little nervous, feeling itchy between your legs from arousal.'
  222. $stat_arousal_tooltip = 'You''re feeling aroused.'
  223. $statusIconBarTab += '<td><a href="exec:msg $stat_arousal_msg"><img title="<<$stat_arousal_tooltip>>" height = 54 src="images/system/icon/status_icons/arousal_med.png"></a></td>'
  224. elseif pcs_horny > 30:
  225. $stat_arousal_msg = 'You''re feeling a tingling sensation between your legs.'
  226. $stat_arousal_tooltip = 'You''re feeling a bit aroused.'
  227. $statusIconBarTab += '<td><a href="exec:msg $stat_arousal_msg"><img title="<<$stat_arousal_tooltip>>" height = 54 src="images/system/icon/status_icons/arousal_low.png"></a></td>'
  228. end
  229. if cheatNoEat = 0:
  230. if pcs_energy < 5:
  231. $stat_hunger_msg = 'You feel faint from hunger, if you don''t have something to eat very soon, you will pass out.'
  232. $stat_hunger_tooltip = 'You feel faint from hunger.'
  233. elseif pcs_energy < 10:
  234. $stat_hunger_msg = 'You are starving, you really need to have something to eat.'
  235. $stat_hunger_tooltip = 'You are starving.'
  236. elseif pcs_energy < 20:
  237. $stat_hunger_msg = 'You are very hungry and struggle to concentrate on anything other than food.'
  238. $stat_hunger_tooltip = 'You are very hungry.'
  239. elseif pcs_energy < 30:
  240. $stat_hunger_msg = 'You feel peckish and your thoughts sometimes drift towards food.'
  241. $stat_hunger_tooltip = 'You feel peckish.'
  242. end
  243. if pcs_energy < 30: $statusIconBarTab += '<td><a href="exec:msg $stat_hunger_msg"><img title="<<$stat_hunger_tooltip>>" height = 54 src="images/system/icon/status_icons/need_food.png"></a></td>'
  244. end
  245. if cheatNoDrink = 0:
  246. if pcs_hydra < 5:
  247. $stat_thirst_msg = 'You feel light-headed, if you don''t have something to drink very soon, you will pass out.'
  248. $stat_thirst_tooltip = 'You feel light-headed.'
  249. elseif pcs_hydra < 10:
  250. $stat_thirst_msg = 'You are dehydrated, you really need to have something to drink.'
  251. $stat_thirst_tooltip = 'You are dehydrated.'
  252. elseif pcs_hydra < 20:
  253. $stat_thirst_msg = 'You are thirsty and your dry throat is irritating and distracting you.'
  254. $stat_thirst_tooltip = 'You are thirsty.'
  255. elseif pcs_hydra < 30:
  256. $stat_thirst_msg = 'You feel a little thirsty and your mouth is a little dry.'
  257. $stat_thirst_tooltip = 'You feel a little thirsty.'
  258. end
  259. if pcs_hydra < 30: $statusIconBarTab += '<td><a href="exec:msg $stat_thirst_msg"><img title="<<$stat_thirst_tooltip>>" height = 54 src="images/system/icon/status_icons/need_drink.png"></a></td>'
  260. end
  261. if cheatNoSleep= 0:
  262. if pcs_sleep < 5:
  263. $stat_sleep_msg = 'You can''t keep your eyes open, if you don''t go to bed now, you will fall asleep right here.'
  264. $stat_sleep_tooltip = 'You can''t keep your eyes open.'
  265. elseif pcs_sleep < 10:
  266. $stat_sleep_msg = 'You are exhausted, you really need to go to bed soon.'
  267. $stat_sleep_tooltip = 'You are exhausted.'
  268. elseif pcs_sleep < 20:
  269. $stat_sleep_msg = 'You are tired and you are struggling to concentrate.'
  270. $stat_sleep_tooltip = 'You are tired.'
  271. elseif pcs_sleep < 30:
  272. $stat_sleep_msg = 'You feel a little tired.'
  273. $stat_sleep_tooltip = 'You feel a little tired.'
  274. end
  275. if pcs_sleep < 30: $statusIconBarTab += '<td><a href="exec:msg $stat_sleep_msg"><img title="<<$stat_sleep_tooltip>>" height = 54 src="images/system/icon/status_icons/need_sleep.png"></a></td>'
  276. end
  277. $statusIconBarTab += '</tr><tr>'
  278. !!Row 3: Pregnancy, cum, lactation, STD...
  279. if menu_off = 0:
  280. $statusIconBarTab += '<td><a href="exec:dynamic $d_cycreport_choice"><img title="Click to open the cycle menu." height = 54 src="images/system/icon/status_icons/vagina.png"></a></td>'
  281. elseif menu_off = 1:
  282. $statusIconBarTab += '<td><a href="exec:msg $stat_disable_msg"><img title="<<$stat_disable_msg>>" height = 54 src="images/system/icon/status_icons/vagina.png"></a></td>'
  283. end
  284. if mesec > 0 and isprok = 0 and isprokp = 0:
  285. $stat_bleed_msg = 'You need to use your feminine hygiene products'+iif($pantyworntype = 'none', ' and you need to also wear panties if you want to use a sanitary pad.', '.')
  286. $statusIconBarTab += '<td><a href="exec:msg $stat_bleed_msg"><img title="<<$stat_bleed_msg>>" height = 54 src="images/system/icon/status_icons/vperiod_bleeding.png"></a></td>'
  287. elseif mesec > 0 and (isprok > 0 or isprokp > 0):
  288. $stat_bleed_msg = 'You''re using feminine hygiene products.'
  289. $statusIconBarTab += '<td><a href="exec:msg $stat_bleed_msg"><img title="<<$stat_bleed_msg>>" height = 54 src="images/system/icon/status_icons/vperiod_sanitaries.png"></a></td>'
  290. elseif placebopart > 0 and LutH > 0 and knowpreg = 0:
  291. $stat_bleed_msg = 'Your period is due to start soon.'
  292. $statusIconBarTab += '<td><a href="exec:msg $stat_bleed_msg"><img title="<<$stat_bleed_msg>>" height = 54 src="images/system/icon/status_icons/vunknown.png"></a></td>'
  293. elseif implant_day > 0 and ((daystart - implant_day) * 24 + hour - implant_hour) < 5:
  294. $stat_bleed_msg = 'You feel a slight twinge in your abdomen.'
  295. $statusIconBarTab += '<td><a href="exec:msg $stat_bleed_msg"><img title="<<$stat_bleed_msg>>" height = 54 src="images/system/icon/status_icons/vunknown.png"></a></td>'
  296. elseif thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon2 <= 30000 and succubusflag ! 1 and cheatSlut = 0 and mesec = 0:
  297. if abortionbirthdate = 0 and daystart - lastmens > 28:
  298. if (daystart - lastmens > 28) and (daystart - lastmens <= 35):
  299. $stat_bleed_msg = 'Your period is late by <<daystart - lastmens - 28>> days.'
  300. elseif (daystart - lastmens > 35) and (daystart - lastmens <= 42):
  301. $stat_bleed_msg = 'Your period is late by more than a week!'
  302. elseif (daystart - lastmens > 42) and (daystart - lastmens <= 56):
  303. $stat_bleed_msg = 'Your period is late by more than two weeks! Maybe you should see a doctor?'
  304. elseif (daystart - lastmens > 56) and (daystart - lastmens <= 84):
  305. $stat_bleed_msg = 'Your period is late by more than a month! You really should see a doctor about it.'
  306. elseif daystart - lastmens > 84:
  307. $stat_bleed_msg = 'You should consider the possibility of a pregnancy, since apparently you no longer have periods.'
  308. end
  309. $statusIconBarTab += '<td><a href="exec:msg $stat_bleed_msg"><img title="<<$stat_bleed_msg>>" height = 54 src="images/system/icon/status_icons/vunknown.png"></a></td>'
  310. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate <= 26:
  311. if daystart - abortionbirthdate <= 13:
  312. $stat_bleed_msg = 'You are still in your recovery period. Nothing to worry about.'
  313. elseif daystart - abortionbirthdate > 13 and daystart - abortionbirthdate <= 16:
  314. $stat_bleed_msg = 'You are maybe still in your recovery period, but there could be a risk.'
  315. elseif daystart - abortionbirthdate > 16 and daystart - abortionbirthdate <= 21:
  316. $stat_bleed_msg = 'You should have recovered from you abortion by know... Right?'
  317. elseif daystart - abortionbirthdate > 21 and daystart - abortionbirthdate <= 26:
  318. $stat_bleed_msg = 'You should have definitely recovered from your abortion by now.'
  319. end
  320. $statusIconBarTab += '<td><a href="exec:msg $stat_bleed_msg"><img title="<<$stat_bleed_msg>>" height = 54 src="images/system/icon/status_icons/vunknown.png"></a></td>'
  321. elseif pregbirthdate ! 0 and daystart - pregbirthdate <= 80:
  322. if daystart - pregbirthdate <= 41:
  323. $stat_bleed_msg = 'You are still in your recovery period. Nothing to worry about.'
  324. elseif daystart - pregbirthdate > 41 and daystart - pregbirthdate <= 48:
  325. $stat_bleed_msg = 'You are probably still in your recovery period.'
  326. elseif daystart - pregbirthdate > 48 and daystart - pregbirthdate <= 55:
  327. $stat_bleed_msg = 'You are maybe still in your recovery period, but there could be a risk.'
  328. elseif daystart - pregbirthdate > 55 and daystart - pregbirthdate <= 70:
  329. $stat_bleed_msg = 'You should have recovered by know... Right?'
  330. elseif daystart - pregbirthdate > 70 and daystart - pregbirthdate <= 80:
  331. $stat_bleed_msg = 'You should have definitely recovered from giving birth by now.'
  332. end
  333. $statusIconBarTab += '<td><a href="exec:msg $stat_bleed_msg"><img title="<<$stat_bleed_msg>>" height = 54 src="images/system/icon/status_icons/vunknown.png"></a></td>'
  334. end
  335. elseif preg = 1:
  336. if thinkpreg = 1 and knowpreg = 0:
  337. $stat_preg_msg = 'You think you''re pregnant, but aren''t sure.'
  338. $stat_preg_tooltip = 'I think I''m pregnant.'
  339. elseif knowpreg = 1:
  340. $stat_preg_tooltip = 'I''m pregnant.'
  341. $stat_preg_msg = 'You are pregnant. Your due date is around <<$pregduedate>>.'
  342. end
  343. $statusIconBarTab += '<td><a href="exec:msg $stat_preg_msg"><img title="<<$stat_preg_tooltip>>" height = 54 src="images/system/icon/status_icons/vpregnant.png"></a></td>'
  344. elseif preg = 2:
  345. $stat_preg_msg = 'Broken water and contractions, it''s pretty clear what is going on. You need to get to a hospital ASAP.'
  346. $stat_preg_tooltip = 'Go to the hospital, ASAP! You''re in labour!'
  347. $statusIconBarTab += '<td><a href="exec:msg $stat_preg_msg"><img title="<<$stat_preg_tooltip>>" height = 54 src="images/system/icon/status_icons/labour.png"></a></td>'
  348. end
  349. gs 'lact_lib','breast_stat_icons'
  350. if $stat_cum_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_cum_msg"><img title="You have cum in and/or on your body. Click to find out more." height = 54 src="images/system/icon/status_icons/cum_covered.png"></a></td>'
  351. if $stat_visible_cum_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_visible_cum_msg"><img title="People can see the cum on your body!" height = 54 src="images/system/icon/status_icons/visible_cum.png"></a></td>'
  352. if stat_cumloc_check = 1 and trt_cumeater = 1 and cumeater_cheat = 0 and menu_off = 0:
  353. $statusIconBarTab += '<td><a href="exec: gs ''cum_manage'', ''cumeater_icon'' & gs ''stat''"><img title="Click to lick up all that delicious cum." height = 54 src="images/system/icon/status_icons/cum_eater.png"></a></td>'
  354. elseif stat_cumloc_check = 1 and trt_cumeater = 1 and cumeater_cheat = 0 and menu_off = 1:
  355. $statusIconBarTab += '<td><a href="exec:msg $stat_disable_msg"><img title="<<$stat_disable_msg>>" height = 54 src="images/system/icon/status_icons/cum_eater.png"></a></td>'
  356. end
  357. if stat_cumloc_check = 1 and salfetka > 0 and menu_off = 0:
  358. $statusIconBarTab += '<td><a href="exec:dynamic $d_salf"><img title="Click to use your wipes." height = 54 src="images/system/icon/status_icons/wipes.png"></a></td>'
  359. elseif stat_cumloc_check = 1 and salfetka > 0 and menu_off = 1:
  360. $statusIconBarTab += '<td><a href="exec:msg $stat_disable_msg"><img title="<<$stat_disable_msg>>" height = 54 src="images/system/icon/status_icons/wipes.png"></a></td>'
  361. end
  362. stat_STD_count = 0
  363. $stat_STD_msg = ''
  364. if Gerpes >= 10 and GenHerpes = 1:
  365. stat_STD_count += 1
  366. $stat_STD_msg += 'Sores have appeared on your vagina. You have genital herpes.'
  367. elseif Gerpes >= 5 and GenHerpes = 1:
  368. stat_STD_count += 1
  369. $stat_STD_msg += 'Your vagina is red and very itchy. You have genital herpes.'
  370. elseif Gerpes >= 3 and Orerpes = 1:
  371. stat_STD_count += 1
  372. $stat_STD_msg += 'You have cold Sores on your lips. You have oral herpes.'
  373. end
  374. if Gerpes >= 20 and GenHerpes = 1:
  375. stat_STD_count += 1
  376. if stat_STD_count > 1: $stat_STD_msg += '<br>'
  377. $stat_STD_msg += 'The herpes sores also cover your ass.'
  378. end
  379. if Sifilis >= 50:
  380. stat_STD_count += 1
  381. if stat_STD_count > 1: $stat_STD_msg += '<br>'
  382. $stat_STD_msg += 'Syphilitic rashes cover your whole body.'
  383. elseif Sifilis >= 21:
  384. stat_STD_count += 1
  385. if stat_STD_count > 1: $stat_STD_msg += '<br>'
  386. $stat_STD_msg += 'You have a single large, hard sore on the lip. You have syphilis.'
  387. end
  388. if Triper > 2:
  389. stat_STD_count += 1
  390. if stat_STD_count > 1: $stat_STD_msg += '<br>'
  391. $stat_STD_msg += 'It stings, when you''re urinating. You have gonorrhea.'
  392. end
  393. if Kandidoz > 30:
  394. stat_STD_count += 1
  395. if stat_STD_count > 1: $stat_STD_msg += '<br>'
  396. $stat_STD_msg += 'There''s a white discharge coming from your vagina. You have thrush.'
  397. end
  398. if stat_STD_count > 0:
  399. $stat_STD_tooltip = 'You have '+iif(stat_STD_count = 1, 'a', '<<stat_STD_count>>')+' STD'+iif(stat_STD_count = 1, '.', 's.')+' Click to find out more.'
  400. $statusIconBarTab += '<td><a href="exec:msg $stat_STD_msg"><img title="<<$stat_STD_tooltip>>" height = 54 src="images/system/icon/status_icons/std.png"></a></td>'
  401. end
  402. $statusIconBarTab += '</tr><tr>'
  403. !!Row 4: Status, Jobs, School, Clothes,...
  404. if bimbolevel > 0: $statusIconBarTab += '<td><a href="exec:msg $bimbostatus"><img title="<<$bimbo_tooltip>>" height = 54 src="images/system/icon/status_icons/bimbo.png"></a></td>'
  405. if hypnoAddict > 0 and $stat_hypno_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_hypno_msg"><img title="<<$stat_hypno_tooltip>>" height = 54 src="images/system/icon/status_icons/hypno_addict.png"></a></td>'
  406. if $stat_court_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_court_msg"><img title="<<$stat_court_tooltip>>" height = 54 src="images/system/icon/status_icons/court.png"></a></td>'
  407. if week = 1:
  408. $stat_school_schedule = ' Today you have the following lessons math, russian, literature, art, biology and P.E.'
  409. elseif week = 2:
  410. $stat_school_schedule = ' Today you have the following lessons english, geography, science, shop, computer, music.'
  411. elseif week = 3:
  412. $stat_school_schedule = ' Today you have the following lessons math, russian, biology, history, computer and P.E.'
  413. elseif week = 4:
  414. $stat_school_schedule = ' Today you have the following lessons english, geography, science, shop, computer and music.'
  415. elseif week = 5:
  416. $stat_school_schedule = ' Today you have the following lessons math, russian, literature, art, history and P.E.'
  417. else
  418. $stat_school_schedule = ''
  419. end
  420. if $stat_school_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_school_msg"><img title="<<$stat_school_tooltip>>" height = 54 src="images/system/icon/status_icons/school.png"></a></td>'
  421. if work > 0 or model > 0 or pornstack > 0: $statusIconBarTab += '<td><a href="exec: gt ''journal'', ''records''"><img title="You have a job. Click to find out more." height = 54 src="images/system/icon/status_icons/work.png"></a></td>'
  422. if $stat_bfgf_msg_0 ! '': $statusIconBarTab += '<td><a href="exec: $stat_bfgf_msg_0"><img title="<<$stat_bfgf_tooltip_0>>" height = 54 src="images/system/icon/status_icons/date.png"></a></td>'
  423. if $stat_bfgf_msg_1 ! '': $statusIconBarTab += '<td><a href="exec: $stat_bfgf_msg_1"><img title="<<$stat_bfgf_tooltip_1>>" height = 54 src="images/system/icon/status_icons/date.png"></a></td>'
  424. if $stat_bfgf_msg_2 ! '': $statusIconBarTab += '<td><a href="exec: $stat_bfgf_msg_2"><img title="<<$stat_bfgf_tooltip_2>>" height = 54 src="images/system/icon/status_icons/date.png"></a></td>'
  425. if $stat_clothes_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_clothes_msg"><img title="<<$stat_clothes_tooltip>>" height = 54 src="images/system/icon/status_icons/<<$stat_clothes_style>>.png"></a></td>'
  426. if $stat_bra_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_bra_msg"><img title="<<$stat_bra_msg>>" height = 54 src="images/system/icon/status_icons/bra.png"></a></td>'
  427. if $stat_panty_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_panty_msg"><img title="<<$stat_panty_msg>>" height = 54 src="images/system/icon/status_icons/panties.png"></a></td>'
  428. if analplugIN = 1 and vibratorin = 0:
  429. $stat_toy_msg = 'A butt plug is inside your ass.'
  430. $statusIconBarTab += '<td><a href="exec:msg $stat_toy_msg"><img title="<<$stat_toy_msg>>" height = 54 src="images/system/icon/status_icons/tbutt_plug.png"></a></td>'
  431. elseif analplugIN = 0 and vibratorin = 1:
  432. $stat_toy_msg = 'A vibrator is inside your vagina.'
  433. $statusIconBarTab += '<td><a href="exec:msg $stat_toy_msg"><img title="<<$stat_toy_msg>>" height = 54 src="images/system/icon/status_icons/tvibrator.png"></a></td>'
  434. elseif analplugIN = 1 and vibratorin = 1:
  435. $stat_toy_msg = 'You''re wearing a plug and a vibrator.'
  436. $statusIconBarTab += '<td><a href="exec:msg $stat_toy_msg"><img title="<<$stat_toy_msg>>" height = 54 src="images/system/icon/status_icons/tdouble_stuffed.png"></a></td>'
  437. end
  438. $statusIconBarTab += '</tr><tr>'
  439. !!Row 5: Drugs and other short term stuff
  440. if siga > 0:
  441. $stat_smoker_msg = 'You have <<siga>> cigarette'+iif(siga = 1, '', 's')+iif(smokerNeed > 0 and NarkImmune = 0, ' and you want to smoke.' , '.')
  442. $statusIconBarTab += '<td><a href="exec:msg $stat_smoker_msg"><img title="<<$stat_smoker_msg>>" height = 54 src="images/system/icon/status_icons/cigarettes.png"></a></td>'
  443. end
  444. if smoker >= 20 and NarkImmune = 0 and smokerNeed > 0 and siga > 0:
  445. $stat_smoke_msg = 'You really need to smoke, click to smoke a cigarette.'
  446. $statusIconBarTab += '<td><a href="exec: gs ''drugs'',''smoke'' & ''You are smoking a cigarette.''"><img title="<<$stat_smoke_msg>>" height = 54 src="images/system/icon/status_icons/craving_nicotine.png"></a></td>'
  447. elseif smoker >= 20 and NarkImmune = 0 and smokerNeed > 0 and siga <= 0:
  448. $stat_smoke_msg = 'You really need to smoke, but you have no cigarettes.'
  449. $statusIconBarTab += '<td><a href="exec:msg $stat_smoke_msg"><img title="<<$stat_smoke_msg>>" height = 54 src="images/system/icon/status_icons/craving_nicotine.png"></a></td>'
  450. elseif siga > 0:
  451. $stat_smoke_msg = 'Click to smoke a cigarette.'
  452. $statusIconBarTab += '<td><a href="exec: gs ''drugs'',''smoke'' & ''You are smoking a cigarette.''"><img title="<<$stat_smoke_msg>>" height = 54 src="images/system/icon/status_icons/smoke_cigarette.png"></a></td>'
  453. end
  454. $stat_drug_msg = ''
  455. if narkday ! daystart and narkoman = 1 and Slomka > 0:
  456. $stat_drug_msg += 'You need heroin and cocaine.'
  457. elseif narkday ! daystart and narkoman = 1 and Slomka <= 0:
  458. $stat_drug_msg += 'You need cocaine.'
  459. elseif SLomka > 0:
  460. $stat_drug_msg += 'You need heroin.'
  461. end
  462. if $stat_drug_msg ! '': $statusIconBarTab += '<td><a href="exec:msg $stat_drug_msg"><img title="<<$stat_drug_msg>>" height = 54 src="images/system/icon/status_icons/craving_drugs.png"></a></td>'
  463. if alko > 0 and alko = 1:
  464. $stat_alko_msg = 'You feel a little buzz from drinking.'
  465. $statusIconBarTab += '<td><a href="exec:msg $stat_alko_msg"><img title="<<$stat_alko_msg>>" height = 54 src="images/system/icon/status_icons/alko_1.png"></a></td>'
  466. elseif alko > 0 and alko < 4:
  467. $stat_alko_msg = 'You''re feeling a bit tipsy.'
  468. $statusIconBarTab += '<td><a href="exec:msg $stat_alko_msg"><img title="<<$stat_alko_msg>>" height = 54 src="images/system/icon/status_icons/alko_2.png"></a></td>'
  469. elseif alko > 0 and alko < 6:
  470. $stat_alko_msg = 'You''re drunk.'
  471. $statusIconBarTab += '<td><a href="exec:msg $stat_alko_msg"><img title="<<$stat_alko_msg>>" height = 54 src="images/system/icon/status_icons/alko_3.png"></a></td>'
  472. elseif alko > 0 and alko < 10:
  473. $stat_alko_msg = 'You''re very drunk.'
  474. $statusIconBarTab += '<td><a href="exec:msg $stat_alko_msg"><img title="<<$stat_alko_msg>>" height = 54 src="images/system/icon/status_icons/alko_4.png"></a></td>'
  475. elseif alko > 0:
  476. $stat_alko_msg = 'You''re wasted.'
  477. $statusIconBarTab += '<td><a href="exec:msg $stat_alko_msg"><img title="<<$stat_alko_msg>>" height = 54 src="images/system/icon/status_icons/alko_4.png"></a></td>'
  478. end
  479. if mentats_dose >= 1: $statusIconBarTab += '<td><a href="exec:msg ''You feel sharp and focused.''"><img title="You feel sharp and focused." height = 54 src="images/system/icon/status_icons/drugs.png"></a></td>'
  480. if aphrodisiac_timer > 0: $statusIconBarTab +='<td><a href="exec:msg ''You are feeling hot and every move causes your groin to tingle.''"><img title="You are feeling hot." height = 54 src="images/system/icon/status_icons/aphro_gum.png"></a></td>'
  481. if frost > 0: $statusIconBarTab += '<td><a href="exec:msg $stat_frost_msg"><img title="<<$stat_frost_msg>>" height = 54 src="images/system/icon/status_icons/hypothermia.png"></a></td>'
  482. if sick > 0: $statusIconBarTab += '<td><a href="exec:msg $stat_sick_msg"><img title="<<$stat_sick_tooltip>>" height = 54 src="images/system/icon/status_icons/health.png"></a></td>'
  483. if recuperation = 1:
  484. $stat_health_msg = 'You are still recovering from major surgery.'
  485. $statusIconBarTab += '<td><a href="exec:msg $stat_health_msg"><img title="<<$stat_health_msg>>" height = 54 src="images/system/icon/status_icons/health.png"></a></td>'
  486. end
  487. if bcream_used = 1:
  488. $stat_cream_msg = 'Your breasts are feeling hot and tingly.'
  489. $statusIconBarTab += '<td><a href="exec:msg $stat_cream_msg"><img title="<<$stat_cream_msg>>" height = 54 src="images/system/icon/status_icons/breast_cream.png"></a></td>'
  490. end
  491. if cumcondslip > 0: $statusIconBarTab += '<td><a href="exec:msg ''You don''t feel so great and you''re still wondering about the used condom you never found. Maybe those two things are related?''"><img title="You feel sick. Click to find out more." height = 54 src="images/system/icon/status_icons/stuck_condom.png"></a></td>'
  492. if body_write > 0 or face_write > 0:
  493. if body_write > 1 and face_write = 0:
  494. $stat_wirting_msg = 'Your body is inscribed with derogatory graffiti.'
  495. elseif body_write = 1 and face_write = 0:
  496. $stat_wirting_msg = 'Your body is an obscene sign.'
  497. elseif body_write = 0 and face_write > 1:
  498. $stat_wirting_msg = 'Your face is covered with writing obscene epithets.'
  499. elseif body_write = 0 and face_write = 1:
  500. $stat_wirting_msg = 'On your face humiliating label.'
  501. else
  502. $stat_wirting_msg = 'Your body and face painted with obscene graffiti.'
  503. end
  504. $statusIconBarTab += '<td><a href="exec:msg $stat_wirting_msg"><img title="<<$stat_wirting_msg>>" height = 54 src="images/system/icon/status_icons/body_writing.png"></a></td>'
  505. end
  506. $statusIconBarTab += '</tr></table>'
  507. $stat_msg += func('cleanHTML',$statusIconBarTab)
  508. killvar '$statusIconBarTab'
  509. else
  510. $stat_msg += '<br>'
  511. end
  512. !!-----------------Status Icons (End)------------------
  513. !!----------------Stat Display, start--------------------------
  514. $stat_tool_msg=''
  515. $stat_extra_msg=''
  516. if enable_show_status = 0:
  517. $stat_tool_msg += '<a href="exec:enable_show_status = 1 & gs ''$menu_obnovit''">▲Status</a> '
  518. else
  519. $stat_tool_msg += '<a href="exec:enable_show_status = 0 & gs ''$menu_obnovit''">▽Status</a> '
  520. end
  521. if disable_show_icons = 1:
  522. $stat_tool_msg += '<a href="exec:disable_show_icons = 0 & gs ''$menu_obnovit''">▽Icons</a> '
  523. else
  524. $stat_tool_msg += '<a href="exec:disable_show_icons = 1 & gs ''$menu_obnovit''">▲Icons</a> '
  525. end
  526. if enable_show_status = 0:
  527. if ETOmenu = 1:
  528. $stat_extra_msg += '<BR><b><<$pcs_health>></b>'
  529. $stat_extra_msg += '<BR><b><<$pcs_willpwr>></b>'
  530. if cheatNoEat = 0: $stat_extra_msg += '<BR><b><<$pcs_energy>></b>'
  531. if cheatNoDrink = 0: $stat_extra_msg += '<BR><b><<$pcs_hydra>></b>'
  532. if cheatNoSleep = 0: $stat_extra_msg += '<BR><b><<$pcs_sleep>></b>'
  533. elseif Enable_scalepic = 2:
  534. $st_temp='rgb(<<(16777216 + fcolor) mod 256>>,<<(16777216 + fcolor)/256 mod 256>>,<<(16777216 + fcolor)/65536>>)'
  535. $stat_extra_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>'
  536. if MagikDostup = 0: $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_mana * 100 / manamax, pcs_mana)+'</TD><TD> Mana</TD></TR>'
  537. $stat_extra_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>'
  538. if cheatNoEat = 0: $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_energy, pcs_energy)+'</TD><TD> Hunger</TD></TR>'
  539. if cheatNoDrink = 0: $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_hydra, pcs_hydra)+'</TD><TD> Thirst</TD></TR>'
  540. if cheatNoSleep = 0: $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_sleep, pcs_sleep)+'</TD><TD> Sleep</TD></TR></TABLE></font></p>'
  541. else
  542. gs 'indik', '2', pcs_horny, pcs_horny
  543. $stat_extra_msg += '<BR><<$ind>> Arousal'
  544. gs 'indik', '2', pain['total'], pain['total'], pain['damage']
  545. $stat_extra_msg += '<BR><<$ind>> Pain'
  546. gs 'indik', '1', pcs_health * 100 / healthmax, pcs_health
  547. $stat_extra_msg += '<BR><<$ind>> Health'
  548. if MagikDostup = 0:
  549. gs 'indik', '1', pcs_mana * 100 / manamax, pcs_mana
  550. $stat_extra_msg += '<BR><<$ind>> Mana'
  551. end
  552. gs 'indik', '1', pcs_willpwr * 100 / willpowermax, pcs_willpwr
  553. $stat_extra_msg += '<BR><<$ind>> Willpower'
  554. gs 'indik', '1', pcs_stam * 100 / stammax, pcs_stam
  555. $stat_extra_msg += '<BR><<$ind>> Stamina'
  556. gs 'indik', '1', pcs_mood, pcs_mood
  557. $stat_extra_msg += '<BR><<$ind>> Mood'
  558. if cheatNoEat = 0:
  559. gs 'indik', '1', pcs_energy, pcs_energy
  560. $stat_extra_msg += '<BR><<$ind>> Hunger'
  561. end
  562. if cheatNoDrink = 0:
  563. gs 'indik', '1', pcs_hydra, pcs_hydra
  564. $stat_extra_msg += '<BR><<$ind>> Thirst'
  565. end
  566. if cheatNoSleep = 0:
  567. gs 'indik', '1', pcs_sleep, pcs_sleep
  568. $stat_extra_msg += '<BR><<$ind>> Sleep'
  569. end
  570. end
  571. end
  572. !!----------------Extra messages, start--------------------------
  573. !!----------------▽Attributes--------------------------
  574. if Enable_showattr = 0:
  575. $stat_tool_msg += '<a href="exec:Enable_showattr = 1 & gs ''$menu_obnovit''">▽Attributes</a>'
  576. else
  577. $stat_tool_msg += '<a href="exec:Enable_showattr = 0 & gs ''$menu_obnovit''">▲Attributes</a>'
  578. !skip if this is first message
  579. if $stat_extra_msg ! null: $stat_extra_msg += '<br><a href="exec:Enable_showattr = 0 & gs ''$menu_obnovit''">▲Attributes:</a>'
  580. if Enable_scalepic = 2:
  581. $stat_extra_msg += '<font color="<<$st_temp>>"><TABLE cellpadding="1" cellspacing="0" width="300"><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>'
  582. if MagikDostup = 0: $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_magik, pcs_magik)+'</TD><TD> Magic</TD></TR>'
  583. if succubusflag = 1: $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', sucexcess, sucexcess)+'</TD><TD> Succubus Energy</TD></TR>'
  584. $stat_extra_msg += '<TR><TD width="85%">'+FUNC('indiktab', '1', pcs_apprnc / 2, pcs_apprnc)+'</TD><TD> Attractiveness</TD></TR>'
  585. 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>'
  586. $stat_extra_msg += '</TABLE></font>'
  587. else
  588. gs 'indik', '1', 100 - pcs_inhib, 100 - pcs_inhib
  589. $stat_extra_msg += '<BR><<$ind>> Inhibition'
  590. gs 'indik', '1', pcs_stren, pcs_stren
  591. $stat_extra_msg += '<BR><<$ind>> Strength'
  592. gs 'indik', '1', pcs_agil, pcs_agil
  593. $stat_extra_msg += '<BR><<$ind>> Agility'
  594. gs 'indik', '1', pcs_vital, pcs_vital
  595. $stat_extra_msg += '<BR><<$ind>> Endurance'
  596. gs 'indik', '1', pcs_intel, pcs_intel
  597. $stat_extra_msg += '<BR><<$ind>> Intelligence'
  598. gs 'indik', '1', pcs_sprt, pcs_sprt
  599. $stat_extra_msg += '<BR><<$ind>> Spirit'
  600. gs 'indik', '1', pcs_react, pcs_react
  601. $stat_extra_msg += '<BR><<$ind>> Reaction'
  602. gs 'indik', '1', pcs_chrsm, pcs_chrsm
  603. $stat_extra_msg += '<BR><<$ind>> Charisma'
  604. gs 'indik', '1', pcs_prcptn, pcs_prcptn
  605. $stat_extra_msg += '<BR><<$ind>> Perception'
  606. if MagikDostup = 0:
  607. gs 'indik', '1', pcs_magik, pcs_magik
  608. $stat_extra_msg += '<BR><<$ind>> Magic'
  609. if succubusflag = 1:
  610. gs 'indik', '1', sucexcess, sucexcess
  611. $stat_extra_msg += '<BR><<$ind>> Succubus energy'
  612. end
  613. end
  614. gs 'indik', '1', pcs_apprnc / 2, pcs_apprnc
  615. $stat_extra_msg += '<BR><<$ind>> Attractiveness'
  616. if SchoolAtestat = 0 and StoryLine > 0:
  617. gs 'indik', '1', pcs_grades, pcs_grades
  618. $stat_extra_msg += '<BR><<$ind>> School Grades'
  619. end
  620. $stat_extra_msg += '<BR>'
  621. end
  622. end
  623. killvar '$st_temp'
  624. !!----------------▽Skills--------------------------
  625. if Enable_showskill = 0:
  626. $stat_tool_msg += ' <a href="exec:Enable_showskill = 1 & gs ''$menu_obnovit''">▽Skills</a>'
  627. else
  628. $stat_tool_msg += ' <a href="exec:Enable_showskill = 0 & gs ''$menu_obnovit''">▲Skills</a>'
  629. !!----------------------▲Skills display------------------------
  630. $stat_sktool_msg=''
  631. st_count=0
  632. $show_table=''
  633. !!----------------Mental skills--------------------------
  634. if Enable_show_mental_skill = 0:
  635. $stat_sktool_msg += ' <a href="exec:Enable_show_mental_skill = 1 & gs ''$menu_obnovit''">◇Mental</a>'
  636. else
  637. $stat_sktool_msg += ' <a href="exec:Enable_show_mental_skill = 0 & gs ''$menu_obnovit''">◆Mental</a>'
  638. if pcs_splcstng > 0 and MagikDostup = 0: gs 'show_table', '<<pcs_splcstng>> Spell Casting', '2'
  639. if pcs_humint > 0: gs 'show_table', '<<pcs_humint>> People skills', '2'
  640. if pcs_persuas > 0: gs 'show_table', '<<pcs_persuas>> Persuasion', '2'
  641. if pcs_observ > 0: gs 'show_table', '<<pcs_observ>> Observation', '2'
  642. end
  643. !!-----------------Sport skills--------------------------
  644. if Enable_show_sport_skill = 0:
  645. $stat_sktool_msg += ' <a href="exec:Enable_show_sport_skill = 1 & gs ''$menu_obnovit''">◇Sport</a>'
  646. else
  647. $stat_sktool_msg += ' <a href="exec:Enable_show_sport_skill = 0 & gs ''$menu_obnovit''">◆Sport</a>'
  648. if pcs_jab > 0: gs 'show_table', '<<pcs_jab>> Jabs', '2'
  649. if pcs_punch > 0: gs 'show_table', '<<pcs_punch>> Power Strikes', '2'
  650. if pcs_kick > 0: gs 'show_table', '<<pcs_kick>> Kicks', '2'
  651. if pcs_def > 0: gs 'show_table', '<<pcs_def>> Defence', '2'
  652. if pcs_run > 0: gs 'show_table', '<<pcs_run>> Running', '2'
  653. if pcs_vball > 0: gs 'show_table', '<<pcs_vball>> Volleyball', '2'
  654. if pcs_ftbll > 0: gs 'show_table', '<<pcs_ftbll>> Football', '2'
  655. if pcs_wrstlng > 0: gs 'show_table', '<<pcs_wrstlng>> Wrestling', '2'
  656. if pcs_shoot > 0: gs 'show_table', '<<pcs_shoot>> Marksmanship', '2'
  657. if pcs_bushcraft > 0: gs 'show_table', '<<pcs_bushcraft>> Bushcraft', '2'
  658. if pcs_chess > 0: gs 'show_table', '<<pcs_chess>> Chess', '2'
  659. if pcs_icesktng > 0: gs 'show_table', '<<pcs_icesktng>> Ice Skating', '2'
  660. if pcs_gaming > 0: gs 'show_table', '<<pcs_gaming>> Gaming', '2'
  661. if pcs_pool > 0: gs 'show_table', '<<pcs_pool>> Pool', '2'
  662. end
  663. !!-----------------Beauty/Modelling skills---------------
  664. if Enable_show_beauty_skill = 0:
  665. $stat_sktool_msg += ' <a href="exec:Enable_show_beauty_skill = 1 & gs ''$menu_obnovit''">◇Beauty</a>'
  666. else
  667. $stat_sktool_msg += ' <a href="exec:Enable_show_beauty_skill = 0 & gs ''$menu_obnovit''">◆Beauty</a>'
  668. if pcs_makupskl > 0: gs 'show_table', '<<pcs_makupskl>> Makeup Skill', '2'
  669. if pcs_danc > 0: gs 'show_table', '<<pcs_danc>> Modern Dancing', '2'
  670. if pcs_dancero > 0: gs 'show_table', '<<pcs_dancero>> Erotic Dancing', '2'
  671. if pcs_dancpol > 0: gs 'show_table', '<<pcs_dancpol>> Pole Dancing', '2'
  672. if pcs_mdlng > 0: gs 'show_table', '<<pcs_mdlng>> Modelling', '2'
  673. if pcs_heels > 0: gs 'show_table', '<<pcs_heels>> Heels', '2'
  674. end
  675. !!---------------------Artistic skills-------------------
  676. if Enable_show_art_skill = 0:
  677. $stat_sktool_msg += ' <a href="exec:Enable_show_art_skill = 1 & gs ''$menu_obnovit''">◇Artistic</a>'
  678. else
  679. $stat_sktool_msg += ' <a href="exec:Enable_show_art_skill = 0 & gs ''$menu_obnovit''">◆Artistic</a>'
  680. if pcs_vokal > 0: gs 'show_table', '<<pcs_vokal>> Singing', '2'
  681. if pcs_instrmusic > 0: gs 'show_table', '<<pcs_instrmusic>> Instrumental Music', '2'
  682. if pcs_photoskl > 0: gs 'show_table', '<<pcs_photoskl>> Photography', '2'
  683. if pcs_artskls > 0: gs 'show_table', '<<pcs_artskls>> Artistic Skills', '2'
  684. end
  685. !!----------------------Job skills------------------------
  686. if Enable_show_job_skill = 0:
  687. $stat_sktool_msg += ' <a href="exec:Enable_show_job_skill = 1 & gs ''$menu_obnovit''">◇Job</a>'
  688. else
  689. $stat_sktool_msg += ' <a href="exec:Enable_show_job_skill = 0 & gs ''$menu_obnovit''">◆Job</a>'
  690. if pcs_cleaning > 0: gs 'show_table', '<<pcs_cleaning>> Cleaning Skill', '2'
  691. if pcs_compskl > 0: gs 'show_table', '<<pcs_compskl>> Computer Skill', '2'
  692. if pcs_comphckng > 0: gs 'show_table', '<<pcs_comphckng>> Hacking', '2'
  693. if pcs_hndiwrk > 0: gs 'show_table', '<<pcs_hndiwrk>> Handy-work', '2'
  694. if pcs_sewng > 0: gs 'show_table', '<<pcs_sewng>> Tailoring', '2'
  695. if pcs_servng > 0: gs 'show_table', '<<pcs_servng>> Serving', '2'
  696. if pcs_medcn > 0: gs 'show_table', '<<pcs_medcn>> Medicine', '2'
  697. if workPTU > 1: gs 'show_table','<<teachlevel>> Teacher credibility','2'
  698. end
  699. !skip if this is first message
  700. if $stat_extra_msg ! null:
  701. $stat_extra_msg += '<br><a href="exec:Enable_showskill = 0 & gs ''$menu_obnovit''">▲Skills:</a> <<$stat_sktool_msg>>'
  702. else
  703. $stat_extra_msg += '<br><<$stat_sktool_msg>>'
  704. end
  705. if st_count > 0 :
  706. $stat_extra_msg += '<BR><TABLE BORDER=1><<$show_table>></TR></TABLE>'
  707. end
  708. end
  709. killvar 'stat_sktool_msg'
  710. killvar 'stat_skextra_msg'
  711. !!----------------▽relations--------------------------
  712. if Enable_showrelation = 0:
  713. $stat_tool_msg += ' <a href="exec:Enable_showrelation = 1 & gs ''$menu_obnovit''">▽Relations</a>'
  714. else
  715. $stat_tool_msg += ' <a href="exec:Enable_showrelation = 0 & gs ''$menu_obnovit''">▲Relations</a>'
  716. st_count=0
  717. $show_table=''
  718. if npc_QW['A192'] > 0:gs'show_table','Nastja: <<npc_QW[''A192'']>>','2'
  719. if npc_rel['A218'] > 0:gs'show_table','Tanya: <<npc_rel[''A218'']>>','2'
  720. if npc_rel['A219'] > 0:gs'show_table','Kat: <<npc_rel[''A219'']>>','2'
  721. if npc_rel['A220'] > 0:gs'show_table','Vika: <<npc_rel[''A220'']>>','2'
  722. if npc_rel['A93'] > 0:gs'show_table','Ira: <<npc_rel[''A93'']>>','2'
  723. if npc_rel['A43'] > 0:gs'show_table','Tamara: <<npc_rel[''A43'']>>','2'
  724. if alla > 0:gs'show_table','Alla: <<alla>>','2'
  725. if masha > 0:gs'show_table','Masha: <<masha>>','2'
  726. if npc_rel['A41'] > 0:gs'show_table','Givi Karapetovich: <<npc_rel[''A41'']>>','2'
  727. if npc_rel['A42'] > 0:gs'show_table','Ashot: <<npc_rel[''A42'']>>','2'
  728. if afra > 0:gs'show_table','Blacks: <<afra>>','2'
  729. if Rex > 0:gs'show_table','Rex: <<Rex>>','2'
  730. if npc_rel['A217'] > 0:gs'show_table','Pavlin: <<npc_rel[''A217''] >>','2'
  731. if npc_rel['A69'] > 0:gs'show_table','Mikhail Nikolaevich: <<npc_rel[''A69'']>>','2'
  732. if npc_rel['A89'] > 0:gs'show_table','Eugene: <<npc_rel[''A89'']>>','2'
  733. if npc_rel['A112'] > 0:gs'show_table','Sergei Shulgin: <<npc_rel[''A112'']>>','2'
  734. if npc_rel['A11'] > 0:gs'show_table','Vasily Shulgin: <<npc_rel[''A11'']>>','2'
  735. if huntersAndreiQw > 0:gs'show_table','Hunter Andrew: <<huntersAndreiQw>>','2'
  736. if huntersSergeiQw > 0:gs'show_table','Hunter Sergei: <<huntersSergeiQw>>','2'
  737. if huntersIgorQw > 0:gs'show_table','Hunter Igor: <<huntersIgorQw>>','2'
  738. if pcs_lovers[0] = 1:gs'show_table', 'BF <<$loverdesc[0]>>: <<loverrelation[0]>>','2'
  739. if pcs_lovers[1] = 1:gs'show_table', 'BF <<$loverdesc[1]>>: <<loverrelation[1]>>','2'
  740. if pcs_lovers[2] = 1:gs'show_table', 'BF <<$loverdesc[2]>>: <<loverrelation[2]>>','2'
  741. if StoryLine > 0:
  742. if npc_rel['A29'] > 0:gs'show_table','Mother: <<npc_rel[''A29'']>>','2'
  743. if npc_rel['A28'] > 0:gs'show_table','Father: <<npc_rel[''A28'']>>','2'
  744. if npc_rel['A33'] > 0:gs'show_table','Sister: <<npc_rel[''A33'']>>','2'
  745. if npc_rel['A34'] > 0:gs'show_table','Brother: <<npc_rel[''A34'']>>','2'
  746. end
  747. if st_count > 0 :
  748. !skip if this is first message
  749. if $stat_extra_msg ! null: $stat_extra_msg += '<BR><a href="exec:Enable_showrelation = 0 & gs ''$menu_obnovit''">▲Relations:</a>'
  750. $stat_extra_msg += '<BR><TABLE BORDER=1> <<$show_table>></TR></TABLE>'
  751. end
  752. end
  753. !!----------------▽image, default to toolbar, can move to top or bottom from setting--------------------------
  754. if Enable_statimg_loc = 0:
  755. if Enable_showstatimg = 0:
  756. $stat_tool_msg += ' <a href="exec:Enable_showstatimg = 1 & gs ''$menu_obnovit''">▽Image</a>'
  757. else
  758. $stat_tool_msg += ' <a href="exec:Enable_showstatimg = 0 & gs ''$menu_obnovit''">▲Image</a>'
  759. !skip if this is first message
  760. if $stat_extra_msg ! null:
  761. $stat_extra_msg += '<br><a href="exec:Enable_showstatimg = 0 & gs ''$menu_obnovit''">▲Image:</a> <<$stat_imgtool_msg>>'
  762. else
  763. $stat_extra_msg += '<br><<$stat_imgtool_msg>>'
  764. end
  765. $stat_extra_msg += '<br><<$stat_imgextra_msg>>'
  766. end
  767. end
  768. if enable_extra_msg = 0:
  769. $stat_tool_msg += ' <a href="exec: enable_extra_msg = 1 & gs ''stat'' ">▽Texts</a>'
  770. else
  771. $stat_tool_msg += ' <a href="exec: enable_extra_msg = 0 & gs ''stat''">▲Texts</a>'
  772. end
  773. !all end, push back and clean up
  774. $stat_msg += '<br>'
  775. $stat_msg += func('cleanHTML',$stat_tool_msg)
  776. if $stat_extra_msg ! NULL : $stat_msg += func('cleanHTML',$stat_extra_msg)
  777. $stat_msg += '<br>'
  778. killvar 'stat_tool_msg'
  779. killvar 'stat_extra_msg'
  780. !!----------------Extra messages, End--------------------------
  781. if enable_extra_msg = 1:
  782. if opPRE = 0: $stat_msg += '<BR><<$pcs_makeup>> and your hair is <<$pcs_hairbsh>>.' & !$stat_msg += '<BR>'
  783. if thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon2 <= 30000 and succubusflag ! 1 and cheatSlut = 0 and mesec = 0:
  784. if abortionbirthdate = 0 and daystart - lastmens > 28:
  785. if (daystart - lastmens > 28) and (daystart - lastmens <= 35):
  786. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by <<daystart - lastmens - 28>> days.</b></font>'
  787. elseif (daystart - lastmens > 35) and (daystart - lastmens <= 42):
  788. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by more than a week!</b></font>'
  789. elseif (daystart - lastmens > 42) and (daystart - lastmens <= 56):
  790. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by more than two weeks! Maybe you should see a doctor?</b></font>'
  791. elseif (daystart - lastmens > 56) and (daystart - lastmens <= 84):
  792. $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>'
  793. elseif daystart - lastmens > 84:
  794. $stat_msg += '<BR><font color = #AB052A><b>You should consider the possibility of a pregnancy, since apparently you no longer have periods.</b></font>'
  795. end
  796. !!Recovery period after an abortion is ~14-21 days
  797. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate <= 13:
  798. $stat_msg += '<BR><font color = #705243><b>You are still in your recovery period. Nothing to worry about.</b></font>'
  799. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate > 13 and daystart - abortionbirthdate <= 16:
  800. $stat_msg += '<BR><font color = #705243><b>You are maybe still in your recovery period, but there could be a risk.</b></font>'
  801. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate > 16 and daystart - abortionbirthdate <= 21:
  802. $stat_msg += '<BR><font color = #820000><b>You should have recovered from you abortion by know... Right?</b></font>'
  803. elseif abortionbirthdate ! 0 and daystart - abortionbirthdate > 21:
  804. $stat_msg += '<BR><font color = #820000><b>You should have definitely recovered from your abortion by now.</b></font>'
  805. !!Recovery period after giving birth is ~42-70 days
  806. elseif pregbirthdate ! 0 and daystart - pregbirthdate <= 41:
  807. $stat_msg += '<BR><font color = #705243><b>You are still in your recovery period. Nothing to worry about.</b></font>'
  808. elseif pregbirthdate ! 0 and daystart - pregbirthdate > 41 and daystart - pregbirthdate <= 48:
  809. $stat_msg += '<BR><font color = #705243><b>You are probably still in your recovery period.</b></font>'
  810. elseif pregbirthdate ! 0 and daystart - pregbirthdate > 48 and daystart - pregbirthdate <= 55:
  811. $stat_msg += '<BR><font color = #705243><b>You are maybe still in your recovery period, but there could be a risk.</b></font>'
  812. elseif pregbirthdate ! 0 and daystart - pregbirthdate > 55 and daystart - pregbirthdate <= 70:
  813. $stat_msg += '<BR><font color = #820000><b>You should have recovered by know... Right?</b></font>'
  814. elseif pregbirthdate ! 0 and daystart - pregbirthdate > 70:
  815. $stat_msg += '<BR><font color = #820000><b>You should have definitely recovered from giving birth by now.</b></font>'
  816. end
  817. end
  818. if implant_day > 0 and ((daystart - implant_day) * 24 + hour - implant_hour) < 5:
  819. $stat_msg += '<BR><font color=#AB052A>You feel a slight twinge in your abdomen.</font>'
  820. end
  821. if mesec > 0:
  822. $stat_msg += '<BR><font color="red">You are currently having your period. '
  823. if isprok = 0 and isprokp = 0:
  824. $stat_msg += 'You need to use your feminine hygiene products.'
  825. elseif isprokp = 1 and $pantyworntype = 'none':
  826. isprokp = 0
  827. $stat_msg += 'You need to wear panties to use a sanitary pad.'
  828. end
  829. $stat_msg += '</font>'
  830. elseif placebopart > 0 and LutH > 0 and knowpreg = 0:
  831. $stat_msg += '<BR><font color="red">Your period is due to start soon.'
  832. $stat_msg += '</font>'
  833. end
  834. if $cycreport_txt ! null and menu_off = 0:
  835. $stat_msg += '<BR><a href="exec:dynamic $d_cycreport_choice"><<$cycreport_txt>></a><br>'
  836. elseif $cycreport_txt ! null and menu_off = 1:
  837. $stat_msg += '<BR><a href="exec:gs ''obj_din'', ''menu_disabled''"><<$cycreport_txt>></a><br>'
  838. end
  839. !!if shame > 0:$stat_msg += '<BR><<$shame>>' & $stat_msg += '<BR>'
  840. if $pcs_mood ! '': $stat_msg += '<BR><font color="green"><b><<$pcs_mood>></b></font>'
  841. if mentats_dose >= 1: $stat_msg += '<BR><font color = green>You feel sharp and focused.</font>'
  842. if bcream_used = 1: $stat_msg += '<BR><font color = #DB7093>Your breasts are feeling hot and tingly.</font>'
  843. if aphrodisiac_timer > 0: $stat_msg += '<BR><font color = #DB7093>You are feeling hot and every move causes your groin to tingle.</font>'
  844. if cheatNoEat = 0:
  845. if pcs_energy < 5:
  846. $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>'
  847. elseif pcs_energy < 10:
  848. $stat_msg += '<BR><font color="red">You are starving, you really need to have something to eat.</font>'
  849. elseif pcs_energy < 20:
  850. $stat_msg += '<BR>You are very hungry and struggle to concentrate on anything other than food.'
  851. elseif pcs_energy < 30:
  852. $stat_msg += '<BR>You feel peckish and your thoughts sometimes drift towards food.'
  853. end
  854. end
  855. if cheatNoDrink = 0:
  856. if pcs_hydra < 5:
  857. $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>'
  858. elseif pcs_hydra < 10:
  859. $stat_msg += '<BR><font color="red">You are dehydrated, you really need to have something to drink.</font>'
  860. elseif pcs_hydra < 20:
  861. $stat_msg += '<BR>You are thirsty and your dry throat is irritating and distracting you.'
  862. elseif pcs_hydra < 30:
  863. $stat_msg += '<BR>You feel a little thirsty and your mouth is a little dry.'
  864. end
  865. end
  866. if cheatNoSleep= 0:
  867. if pcs_sleep < 5:
  868. $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>'
  869. elseif pcs_sleep < 10:
  870. $stat_msg += '<BR><font color="red">You are exhausted, you really need to go to bed soon.</font>'
  871. elseif pcs_sleep < 20:
  872. $stat_msg += '<BR>You are tired and you are struggling to concentrate.'
  873. elseif pcs_sleep < 30:
  874. $stat_msg += '<BR>You feel a little tired.'
  875. end
  876. end
  877. if pcs_horny >= 50:
  878. if pcs_horny < 90 and $pantyworntype ! 'none':
  879. $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>'
  880. elseif pcs_horny < 90 and $pantyworntype = 'none':
  881. $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>'
  882. elseif $pantyworntype ! 'none':
  883. $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>'
  884. else
  885. $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>'
  886. end
  887. end
  888. if smoker >= 20 and NarkImmune = 0:
  889. if smokerNeed > 0:
  890. if siga > 0:
  891. $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>'
  892. else
  893. $stat_msg += '<BR><font color="red"><b>You want to smoke, but you have no cigarettes left.</b></font><BR>'
  894. end
  895. else
  896. if siga > 0:
  897. $stat_msg += '<BR><a href="exec:gs ''drugs'',''smoke''"><font color=#0064FF><b>You have <<siga>> cigarettes left.</b></font></a><BR>'
  898. else
  899. $stat_msg += '<BR><font color=#0064FF><b>You feel like you should get some cigarettes.</b></font><BR>'
  900. end
  901. end
  902. elseif siga > 0:
  903. $stat_msg += '<BR><a href="exec:gs ''drugs'',''smoke''"><font color=#0064FF><b>You have <<siga>> cigarettes.</b></font></a><BR>'
  904. end
  905. if smokeHour = hour and smokeday = daystart and smokeminut >= minut: $stat_msg += '<BR><font color="green">You are smoking a cigarette.</font><BR>'
  906. if jointhour = hour and jointday = daystart and jointminut >= minut: $stat_msg += '<BR><font color="green">You are smoking a joint.</font><BR>'
  907. if cheatNoSweat = 0:
  908. if pcs_sweat < 0:
  909. pcs_sweat = 0
  910. elseif pcs_sweat > 69:
  911. pcs_sweat = 69
  912. end
  913. if pcs_sweat > 59:
  914. $stat_msg += '<br><b><font color="red">You are dripping wet from sweat and smell like a gym sock.</font></b><br>'
  915. elseif pcs_sweat > 49:
  916. $stat_msg += '<br><b><font color="red">You really stink.</font></b>'
  917. elseif pcs_sweat > 39:
  918. $stat_msg += '<br><font color="red">You stink.</font>'
  919. elseif pcs_sweat > 29:
  920. $stat_msg += '<br><font color="red">You are a little smelly.</font>'
  921. elseif pcs_sweat > 19:
  922. $stat_msg += '<br><font color="brown">You''re sweating.</font>'
  923. elseif pcs_sweat > 9 and deodorant_on = 1:
  924. $stat_msg += '<br><b><font color="green">You feel fresh with your deodorant.</font>'
  925. else
  926. if arrsize('sparrvol') = 0:
  927. $stat_msg += '<br><b><font color="green">You are sparkling clean.</font></b>'
  928. elseif deodorant_on = 1:
  929. $stat_msg += '<br><b><font color="green">You feel fresh with your deodorant on.</font></b>'
  930. end
  931. end
  932. end
  933. !! breast status
  934. gs 'lact_lib','breast_stat_disp'
  935. if body_write > 0 or face_write > 0:
  936. if body_write > 1 and face_write = 0:
  937. $stat_msg += '<br><b><font color = red>Your body is inscribed with derogatory graffiti.</font></b>'
  938. elseif body_write = 1 and face_write = 0:
  939. $stat_msg += '<br><b><font color = red>Your body is an obscene sign.</font></b>'
  940. elseif body_write = 0 and face_write > 1:
  941. $stat_msg += '<br><b><font color = red>Your face is covered with writing obscene epithets.</font></b>'
  942. elseif body_write = 0 and face_write = 1:
  943. $stat_msg += '<br><b><font color = red>On your face humiliating label.</font>'
  944. else
  945. $stat_msg += '<br><b><font color = red>Your body and face painted with obscene graffiti.</font></b>'
  946. end
  947. end
  948. if recuperation = 1: $stat_msg += '<b><font color="red">You are still recovering from major surgery.</font></b>'
  949. end
  950. !!------------------------ Cum management (Start) ------------------------------
  951. if Enable_clearcum > 0: gs 'cum_cleanup', 'reset'
  952. killvar 'cumvolume'
  953. killvar 'i'
  954. killvar 'knownguy'
  955. killvar 'cumcount'
  956. killvar 'cumowner'
  957. if arrsize('sparrvol') > 0:
  958. !!go through every location
  959. :locationloop
  960. !!start from the freshest load
  961. idx = arrsize('sparrloc')-1
  962. :spermitemloop
  963. !!if the currently examined load loaction is the location of the current cycle, execute
  964. if sparrloc[idx] = i:
  965. !!setting the age of the current load
  966. !! 0: mouth
  967. !! 1: in this hour
  968. !! 2: in four hours
  969. !! 3: at least five hours ago
  970. !! 4: in body (pussy or ass)
  971. !! 5: no more than 12 hours in condom
  972. !! 6: no more than 48 hours in condom
  973. !! 7: more than two days old, in condom
  974. if i = 12:
  975. j = 0
  976. elseif i = 17:
  977. if sparrage[idx] <= 12:
  978. j = 5
  979. elseif sparrage[idx] <= 48:
  980. j = 6
  981. else
  982. j = 7
  983. end
  984. elseif i = 0 or i = 3:
  985. j = 4
  986. else
  987. if sparrage[idx] <= 1:
  988. j = 1
  989. elseif sparrage[idx] <= 5:
  990. j = 2
  991. else
  992. j = 3
  993. end
  994. end
  995. cumvolume['<<i>>:<<j>>'] += sparrvol[idx]
  996. if sparrvol[idx] > 0:
  997. if sparridt[idx] = 0:
  998. !!unknown partner
  999. cumcount['<<i>>:<<j>>'] += 1
  1000. elseif sparridt[idx] = 1:
  1001. !!known partner
  1002. !!storing the name of the cum owner (format: $cumowner[<cum location>:<age of cum>:<index of cum owner>])
  1003. if knownguy['<<i>>:<<j>>'] > 0:
  1004. gchk = 0
  1005. :sameguycheck
  1006. if $cumowner['<<i>>:<<j>>:<<gchk>>'] ! $sparrnam[idx] and gchk <= knownguy['<<i>>:<<j>>']:gchk += 1 & jump 'sameguycheck'
  1007. if gchk > knownguy['<<i>>:<<j>>']:
  1008. $cumowner['<<i>>:<<j>>:<<knownguy[''<<i>>:<<j>>'']>>'] = $sparrnam[idx]
  1009. knownguy['<<i>>:<<j>>'] += 1
  1010. cumcount['<<i>>:<<j>>'] += 1
  1011. end
  1012. else
  1013. $cumowner['<<i>>:<<j>>:<<knownguy[''<<i>>:<<j>>'']>>'] = $sparrnam[idx]
  1014. knownguy['<<i>>:<<j>>'] += 1
  1015. cumcount['<<i>>:<<j>>'] += 1
  1016. end
  1017. end
  1018. end
  1019. end
  1020. if idx > 0:idx -= 1 & jump 'spermitemloop'
  1021. if i < 18:i += 1 & jump 'locationloop'
  1022. killvar 'i'
  1023. killvar 'idx'
  1024. killvar 'j'
  1025. end
  1026. !!Clearing cum location array before positive entries are applied below in the icon and the text message codes
  1027. killvar 'cumloc'
  1028. $stat_cum_msg = ''
  1029. $stat_visible_cum_temp = ''
  1030. stat_visible_cum = 0
  1031. stat_cumloc_check = 0
  1032. i = 0
  1033. :cumlocloop
  1034. if i = 0:
  1035. $icon_txtloc = 'your pussy'
  1036. $txtloc = 'your <a href="exec:view''images/pc/body/cum/creampie/cumpussy'+rand(1,14)+'.jpg''">pussy</a>'
  1037. elseif i = 1:
  1038. $icon_txtloc = 'your labia'
  1039. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumpussy/cumpus'+rand(1,4)+'.jpg''">labia</a>'
  1040. elseif i = 2:
  1041. $txtloc = 'the front of your panties'
  1042. $icon_txtloc = $txtloc
  1043. elseif i = 3:
  1044. $icon_txtloc = 'your ass'
  1045. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumanal/cumanal'+rand(1,11)+'.jpg''">ass</a>'
  1046. elseif i = 4:
  1047. $icon_txtloc = 'your butt'
  1048. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumass/cumass'+rand(1,6)+'.jpg''">butt</a>'
  1049. elseif i = 5:
  1050. $txtloc = 'the back of your panties'
  1051. $icon_txtloc = $txtloc
  1052. elseif i = 6:
  1053. if cumvolume['<<i>>:<<j>>'] > 0:
  1054. stat_visible_cum = 1
  1055. if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
  1056. $stat_visible_cum_temp += 'your clothes near your groin'
  1057. end
  1058. $icon_txtloc = 'your clothes near your groin'
  1059. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumclothes/'+rand(1,3)+'.jpg''">clothes near your groin</a>'
  1060. elseif i = 7:
  1061. if cumvolume['<<i>>:<<j>>'] > 0:
  1062. stat_visible_cum = 1
  1063. if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
  1064. $stat_visible_cum_temp += 'your clothes'
  1065. end
  1066. $icon_txtloc = 'your clothes'
  1067. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumclothes/cumclothes'+rand(1,21)+'.jpg''">clothes</a>'
  1068. elseif i = 8:
  1069. $txtloc = 'your back'
  1070. $icon_txtloc = $txtloc
  1071. elseif i = 9:
  1072. $txtloc = 'your legs'
  1073. $icon_txtloc = $txtloc
  1074. elseif i = 10:
  1075. $txtloc = 'your arms'
  1076. $icon_txtloc = $txtloc
  1077. elseif i = 11:
  1078. if pcs_haircol = 0:
  1079. $cum_face_image = 'brown/'
  1080. $cum_face_image += rand(1, 31)
  1081. elseif pcs_haircol = 1:
  1082. $cum_face_image = 'black/'
  1083. $cum_face_image += rand(1, 23)
  1084. elseif pcs_haircol = 2:
  1085. $cum_face_image = 'red/'
  1086. $cum_face_image += rand(1, 19)
  1087. elseif pcs_haircol = 3:
  1088. $cum_face_image = 'blonde/'
  1089. $cum_face_image += rand(1, 25)
  1090. elseif pcs_haircol > 3:
  1091. $cum_face_image = 'custom/'
  1092. $cum_face_image += rand(1, 20)
  1093. end
  1094. if cumvolume['<<i>>:<<j>>'] > 0:
  1095. stat_visible_cum = 1
  1096. if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
  1097. $stat_visible_cum_temp += 'your face'
  1098. end
  1099. $icon_txtloc = 'your face'
  1100. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumface/<<$cum_face_image>>.jpg''">face</a>'
  1101. killvar 'cum_face_image'
  1102. elseif i = 13:
  1103. if cumvolume['<<i>>:<<j>>'] > 0:
  1104. stat_visible_cum = 1
  1105. if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
  1106. $stat_visible_cum_temp += 'your hands'
  1107. end
  1108. $txtloc = 'your hands'
  1109. $icon_txtloc = $txtloc
  1110. elseif i = 14:
  1111. $icon_txtloc = 'your stomach'
  1112. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumbelly/cumbelly'+rand(1,12)+'.jpg''">stomach</a>'
  1113. elseif i = 15:
  1114. $icon_txtloc = 'your breasts'
  1115. $txtloc = 'your <a href="exec:view''images/pc/body/cum/cumtits/cumtits'+rand(1,19)+'.jpg''">breasts</a>'
  1116. elseif i = 16:
  1117. if cumvolume['<<i>>:<<j>>'] > 0:
  1118. stat_visible_cum = 1
  1119. if $stat_visible_cum_temp ! '': $stat_visible_cum_temp += ', '
  1120. $stat_visible_cum_temp += 'your hair'
  1121. end
  1122. $icon_txtloc = 'your hair'
  1123. $txtloc = 'your hair</a>'
  1124. elseif i = 17:
  1125. $txtloc = 'in your vagina in a slipped condom'
  1126. $icon_txtloc = $txtloc
  1127. else
  1128. $icon_txtloc = 'the gusset of your panties'
  1129. $txtloc = 'the gusset of your panties</a>'
  1130. end
  1131. j = 0
  1132. :ageloop
  1133. if cumvolume['<<i>>:<<j>>'] > 0:
  1134. !!Cum locations set for checking npc reactions
  1135. cumloc[i] = 1
  1136. if stat_cumloc_check ! 1: stat_cumloc_check = 1
  1137. !!amount setting
  1138. if cumvolume['<<i>>:<<j>>'] > 250:
  1139. !! 25 ml, about four-five load, gushing
  1140. $txtamount = 'Enormous '
  1141. elseif cumvolume['<<i>>:<<j>>'] > 100:
  1142. !! 10 ml, about two load, flowing
  1143. $txtamount = 'Huge '
  1144. elseif cumvolume['<<i>>:<<j>>'] >= 20:
  1145. !! 2 ml, seeping out
  1146. $txtamount = 'Decent '
  1147. else
  1148. !! residue amount, no leakage
  1149. $txtamount = 'Small '
  1150. end
  1151. !! if sperm age stage is 4, it means inside the body
  1152. if j = 4:
  1153. if (vibratorIN = 1 and i = 0) or (analplugin = 1 and i = 3):
  1154. $txtproxy = 'being plugged in '
  1155. elseif i = 0 and cumvolume['<<i>>:<<j>>'] < pcs_vag*5:
  1156. $txtproxy = 'staying inside of '
  1157. elseif i = 3 and pcs_ass <= 25:
  1158. $txtproxy = 'staying inside of '
  1159. else
  1160. if cumvolume['<<i>>:<<j>>'] > 250:
  1161. $txtproxy = 'gushing out of '
  1162. elseif cumvolume['<<i>>:<<j>>'] > 100:
  1163. $txtproxy = 'flowing out of '
  1164. elseif cumvolume['<<i>>:<<j>>'] >= 40:
  1165. $txtproxy = 'seeping out of '
  1166. else
  1167. $txtproxy = 'staying inside of '
  1168. end
  1169. end
  1170. elseif j >= 5:
  1171. !! if sperm age stage is over 4, meaning in condom
  1172. if j = 5:
  1173. $txtproxy = 'buried '
  1174. elseif j = 6:
  1175. $txtproxy = 'marinating '
  1176. else
  1177. $txtproxy = 'rotting '
  1178. end
  1179. if cumcondslip_deep > (vagina / 2): $txtproxy += 'deep '
  1180. elseif j < 4 and j > 0:
  1181. !!amount setting
  1182. if cumvolume['<<i>>:<<j>>'] > 160:
  1183. !! 10 ml, about two load, flowing
  1184. $txtproxy = 'coating '
  1185. elseif cumvolume['<<i>>:<<j>>'] > 40:
  1186. !! 2 ml, seeping out
  1187. $txtproxy = 'covering '
  1188. else
  1189. !! residue amount, no leakage
  1190. $txtproxy = 'spattering '
  1191. end
  1192. if j = 1:
  1193. $txtproxy += 'wetly '
  1194. elseif j = 2:
  1195. $txtproxy += 'dryly '
  1196. else
  1197. $txtproxy += 'powderly '
  1198. end
  1199. end
  1200. $txtperson = ''
  1201. if cumcount['<<i>>:<<j>>'] = 0:
  1202. !!ToDo: No idea how to do the icon here (julzor)
  1203. $txtiscum = 'some whitish substance '
  1204. else
  1205. $txtiscum = 'cum'
  1206. if cumcount['<<i>>:<<j>>'] = knownguy['<<i>>:<<j>>']:
  1207. !! everyone is known (one or more)
  1208. if knownguy['<<i>>:<<j>>'] = 1:
  1209. $txtperson = $npc_usedname[$cumowner['<<i>>:<<j>>:0']] + ' '
  1210. else
  1211. kmax = 0
  1212. :nullocator1
  1213. if $cumowner['<<i>>:<<j>>:<<kmax>>'] ! '':kmax += 1 & jump 'nullocator1'
  1214. kmax -= 1
  1215. k = 0
  1216. :knownloop
  1217. $txtperson += $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']]
  1218. if k < kmax-1:$txtperson += ', ' & k += 1 & jump 'knownloop'
  1219. k += 1
  1220. $txtperson += ' and ' + $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']] + ' '
  1221. end
  1222. elseif knownguy['<<i>>:<<j>>'] = 0:
  1223. !! no one is known (one or more)
  1224. if cumcount['<<i>>:<<j>>'] = 1:
  1225. $txtperson += 'some guy '
  1226. else
  1227. $txtperson += 'some guys '
  1228. end
  1229. else
  1230. !! there are known and unknown guys in the mix
  1231. if knownguy['<<i>>:<<j>>'] = 1:
  1232. $txtperson = $npc_usedname[$cumowner['<<i>>:<<j>>:0']] + ' and some guy'
  1233. else
  1234. kmax = 0
  1235. :nullocator2
  1236. if $cumowner['<<i>>:<<j>>:<<kmax>>'] ! '':kmax += 1 & jump 'nullocator2'
  1237. kmax -= 1
  1238. k = 0
  1239. :mixloop
  1240. $txtperson += $npc_usedname[$cumowner['<<i>>:<<j>>:<<k>>']] + ', '
  1241. if k < kmax: k += 1 & jump 'mixloop'
  1242. $txtperson += 'and some guy'
  1243. end
  1244. if cumcount['<<i>>:<<j>>'] - knownguy['<<i>>:<<j>>'] > 1:
  1245. $txtperson += 's '
  1246. else
  1247. $txtperson += ' '
  1248. end
  1249. end
  1250. end
  1251. $icon_txtiscum = $txtiscum
  1252. 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>'
  1253. $txtiscum += ' from '
  1254. $icon_txtiscum += ' from '
  1255. if i = 0 and j = 4 and vibratorIN = 0 and pcs_vag*10 < cumvolume['<<i>>:<<j>>'] and cumvolume['<<i>>:<<j>>'] >= 20:
  1256. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + iif($pantyworntype ! 'none', ' into your panties.', ' down your legs.')+'</font></b>'
  1257. if $stat_cum_msg ! '': $stat_cum_msg += '<br>'
  1258. $stat_cum_msg += $txtamount + 'amounts of ' + $icon_txtiscum + $txtperson + 'is ' + $txtproxy + $icon_txtloc + iif($pantyworntype ! 'none', ' into your panties.', ' down your legs.')
  1259. elseif sparragestage >= 5:
  1260. if cumcondslip_aware > 0 and enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + '.</font></b>'
  1261. if $stat_cum_msg ! '': $stat_cum_msg += '<br>'
  1262. $stat_cum_msg += $txtamount + 'amounts of ' + $icon_txtiscum + $txtperson + 'is ' + $txtproxy + $icon_txtloc + '.'
  1263. elseif j ! 0:
  1264. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">' + $txtamount + 'amounts of ' + $txtiscum + $txtperson + 'is ' + $txtproxy + $txtloc + '.</font></b>'
  1265. if $stat_cum_msg ! '': $stat_cum_msg += '<br>'
  1266. $stat_cum_msg += $txtamount + 'amounts of ' + $icon_txtiscum + $txtperson + 'is ' + $txtproxy + $icon_txtloc + '.'
  1267. else
  1268. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">Your breath smells like sperm.</font></b>'
  1269. if $stat_cum_msg ! '': $stat_cum_msg += '<br>'
  1270. $stat_cum_msg += 'Your breath smells like sperm.'
  1271. end
  1272. end
  1273. if j < 7: j+=1 & jump 'ageloop'
  1274. if i < 18: i+=1 & jump 'cumlocloop'
  1275. killvar 'i'
  1276. killvar 'j'
  1277. killvar 'txtperson'
  1278. killvar 'k'
  1279. killvar 'kmax'
  1280. killvar 'txtamount'
  1281. killvar 'txtiscum'
  1282. killvar '$icon_txtiscum'
  1283. killvar 'txtperson'
  1284. killvar 'txtproxy'
  1285. killvar 'txtloc'
  1286. killvar '$icon_txtloc'
  1287. killvar 'cumvolume'
  1288. killvar 'cumcount'
  1289. killvar 'knownguy'
  1290. killvar 'cumowner'
  1291. if $stat_visible_cum_temp ! '':
  1292. $stat_visible_cum_msg = 'People can see the cum on '+ $stat_visible_cum_temp + '.'
  1293. else
  1294. $stat_visible_cum_msg = ''
  1295. end
  1296. !!----------------------- Cum management (End) ----------------------------------
  1297. if enable_extra_msg = 1:
  1298. !!stds
  1299. if Gerpes >= 10 and GenHerpes = 1:
  1300. $stat_msg += '<BR><b><font color="red">Sores have appeared on your vagina. You have genital herpes.</font></b>'
  1301. elseif Gerpes >= 5 and GenHerpes =1:
  1302. $stat_msg += '<BR><b><font color="red">Your vagina is red and very itchy. You have genital herpes.</font></b>'
  1303. elseif Gerpes >= 3 and Orerpes = 1:
  1304. $stat_msg += '<BR><b><font color="red">You have cold Sores on your lips. You have oral herpes.</font></b>'
  1305. end
  1306. if Gerpes >= 20 and GenHerpes =1:$stat_msg += '<BR> <b><font color="red">The herpes sores also cover your ass.</font></b>'
  1307. if Sifilis >= 50:
  1308. $stat_msg += '<BR><b><font color="red">Syphilitic rashes cover your whole body.</font></b>'
  1309. elseif Sifilis >= 21:
  1310. $stat_msg += '<BR><b><font color="red">You have a single large, hard sore on the lip. You have syphilis.</font></b>'
  1311. end
  1312. if Triper > 2:$stat_msg += '<BR><b><font color="red">There''s a white discharge and a strong smell coming from your vagina, and it stings when urinating. You have gonorrhea.</font></b>'
  1313. if Kandidoz > 30:$stat_msg += '<BR><b><font color="red">There''s a white discharge and strong smell from your vagina. You have thrush.</font></b>'
  1314. !!drug withdrawal
  1315. if SLomka > 0:$stat_msg += '<BR><b><font color="red">You are very weak and hurt to the bone. You''re suffering withdrawal.</font></b>'
  1316. if narkday ! daystart and narkoman = 1:$stat_msg += '<BR><b><font color="red">You are very weak and hurt to the bone. You urgently need some cocaine.</font></b>'
  1317. ! WD: Bimbo look
  1318. if bimbolevel > 0: $stat_msg += '<BR><<$bimbostatus>>'
  1319. if analplugIN = 1:$stat_msg += '<BR><font color = #FF1493>You have a butt plug inserted in your ass.</font>'
  1320. if vibratorin = 1:$stat_msg += '<BR><font color = #FF1493>You have a vibrator inserted in your vagina.</font>'
  1321. if alko > 0 and alko = 1:
  1322. $stat_msg += '<br><b><font color="green">You feel a little buzz from drinking.</font></b>'
  1323. elseif alko > 0 and alko < 4:
  1324. $stat_msg += '<br><b><font color="orange">You''re feeling a bit tipsy.</font></b>'
  1325. elseif alko > 0 and alko < 6:
  1326. $stat_msg += '<br><b><font color="orange">You''re drunk.</font></b>'
  1327. elseif alko > 0 and alko < 10:
  1328. $stat_msg += '<br><b><font color="red">You''re very drunk.</font></b>'
  1329. elseif alko > 0:
  1330. $stat_msg += '<br><b><font color="red">You''re wasted.</font></b>'
  1331. end
  1332. end
  1333. $stat_clothes_msg = ''
  1334. $stat_clothes_tooltip = ''
  1335. $stat_clothes_style = ''
  1336. $stat_bra_msg = ''
  1337. $stat_panty_msg = ''
  1338. $stat_img_temp = FUNC('$body_image','clothes')
  1339. if $clothingworntype ! 'nude':
  1340. if CloThinness = 6:
  1341. if $clothingworntype = 'swimwear':
  1342. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>Your nipples are clearly showing through your transparent swimsuit.</font>'
  1343. $stat_bra_msg = 'Your nipples are clearly showing through your transparent swimsuit.'
  1344. elseif $braworntype = 'exhibitionist':
  1345. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>Your breasts are fully on display through your transparent bra and top.</font>'
  1346. $stat_bra_msg = 'Your breasts are fully on display through your transparent bra and top.'
  1347. elseif $braworntype ! 'none':
  1348. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>Your bra is clearly showing through your transparent top.</font>'
  1349. $stat_bra_msg = 'Your bra is clearly showing through your transparent top.'
  1350. else
  1351. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are not wearing a bra and your breasts are fully on display through your transparent top.</font>'
  1352. $stat_bra_msg = 'You are not wearing a bra and your breasts are fully on display through your transparent top.'
  1353. end
  1354. elseif CloThinness = 5:
  1355. if $clothingworntype = 'swimwear':
  1356. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>Your nipples are noticeably poking through your swimsuit.</font>'
  1357. $stat_bra_msg = 'Your nipples are noticeably poking through your swimsuit.'
  1358. elseif $braworntype = 'exhibitionist':
  1359. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are wearing such a thin bra that your nipples are noticeably poking through the thin fabric of your top.</font>'
  1360. $stat_bra_msg = 'You are wearing such a thin bra that your nipples are noticeably poking through the thin fabric of your top.'
  1361. elseif $braworntype = 'none':
  1362. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are not wearing a bra and your nipples are noticeably poking through the thin fabric of your top.</font>'
  1363. $stat_bra_msg = 'You are not wearing a bra and your nipples are noticeably poking through the thin fabric of your top.'
  1364. end
  1365. elseif CloThinness = 4:
  1366. if $clothingworntype = 'swimwear':
  1367. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>Your nipples are very slightly poking through your swimsuit.</font>'
  1368. $stat_bra_msg = 'Your nipples are very slightly poking through your swimsuit.'
  1369. elseif $braworntype = 'exhibitionist':
  1370. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are wearing such a thin bra that your nipples are subtly outlined through your top.</font>'
  1371. $stat_bra_msg = 'You are wearing such a thin bra that your nipples are subtly outlined through your top.'
  1372. elseif $braworntype = 'none':
  1373. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are not wearing a bra and your nipples are being subtly outlined through your top.</font>'
  1374. $stat_bra_msg = 'You are not wearing a bra and your nipples are being subtly outlined through your top.'
  1375. end
  1376. elseif $braworntype = 'none':
  1377. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are not wearing a bra.</font>'
  1378. $stat_bra_msg = 'You are not wearing a bra.'
  1379. end
  1380. end
  1381. if $pantyworntype = 'none' and $clothingworntype ! 'swimwear':
  1382. if PCloStyle = 4:
  1383. if enable_extra_msg = 1: $stat_msg += '<BR><font color= #FF00FF>You are not wearing panties, but you are dressed as a hooker, so that''s hardly surprising.</font>'
  1384. $stat_panty_msg = 'You are not wearing panties, but you are dressed as a hooker, so that''s hardly surprising.'
  1385. elseif PCloBimbo = 1 or bimbolevel > 0 and PCloSkirt > 3 and cheatBimbo = 0:
  1386. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You like, totally forgot to put on any panties. You are such a bimbo.</font>'
  1387. $stat_panty_msg = 'You like, totally forgot to put on any panties. You are such a bimbo.'
  1388. elseif PCloSkirt > 3:
  1389. if pcs_inhib > 50:
  1390. if enable_extra_msg = 1: $stat_msg += '<BR><font color=#0064FF>You feel liberated not wearing panties as your naked ass flashes from under your short skirt.</font>'
  1391. $stat_panty_msg = 'You feel liberated not wearing panties as your naked ass flashes from under your short skirt.'
  1392. else
  1393. if enable_extra_msg = 1: $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>'
  1394. $stat_panty_msg = 'Your face is flushed with shame, you are not wearing panties and your naked ass flashes from under your short skirt.'
  1395. end
  1396. elseif PCloPants > 0:
  1397. if $braworntype = 'none':
  1398. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">You aren''t wearing underwear, and your bare pussy is rubbing against your clothing.</font></b>'
  1399. $stat_panty_msg = 'You aren''t wearing underwear, and your bare pussy is rubbing against your clothing.'
  1400. else
  1401. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">You aren''t wearing panties, and your bare pussy is rubbing against your clothing.</font></b>'
  1402. $stat_panty_msg = 'You aren''t wearing panties, and your bare pussy is rubbing against your clothing.'
  1403. end
  1404. elseif towel = 1:
  1405. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>Your naked body is covered only by a short towel.</font>'
  1406. $stat_panty_msg = 'Your naked body is covered only by a short towel.'
  1407. elseif $clothingworntype ! 'nude':
  1408. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are not wearing '+iif($braworntype = 'none', 'any underwear.', 'panties.')+'</font>'
  1409. $stat_panty_msg = 'You are not wearing '+iif($braworntype = 'none', 'any underwear.', 'panties.')
  1410. end
  1411. elseif $pantyworntype = 'exhibitionist' and $clothingworntype ! 'swimwear':
  1412. if PCloStyle = 4:
  1413. if enable_extra_msg = 1: $stat_msg += '<BR><font color= #FF00FF>You are wearing see-through panties, but you are dressed as a hooker, so that''s hardly surprising.</font>'
  1414. $stat_panty_msg = 'You are wearing see-through panties, but you are dressed as a hooker, so that''s hardly surprising.'
  1415. elseif PCloSkirt > 3:
  1416. if pcs_inhib > 50:
  1417. if enable_extra_msg = 1: $stat_msg += '<BR><font color=#0064FF>You feel liberated as your ass, clearly visible through your panties, flashes from under your short skirt.</font>'
  1418. $stat_panty_msg = 'You feel liberated as your ass, clearly visible through your panties, flashes from under your short skirt.'
  1419. else
  1420. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">Your face is flushed with shame, you are wearing panties so thin, they leave your ass clearly visible, as it flashes from under your short skirt.</font></b>'
  1421. $stat_panty_msg = 'Your face is flushed with shame, you are wearing panties so thin, they leave your ass clearly visible, as it flashes from under your short skirt.'
  1422. end
  1423. end
  1424. end
  1425. if $clothingworntype = 'nude':
  1426. if $pantyworntype = 'exhibitionist':
  1427. if $braworntype = 'none':
  1428. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are only wearing your see-through panties and your boobs sway invitingly as you walk.</font>'
  1429. $stat_clothes_tooltip = 'You are wearing your see-through panties.'
  1430. $stat_clothes_msg = 'You are only wearing your see-through panties and your boobs sway invitingly as you walk.'
  1431. elseif $braworntype = 'exhibitionist':
  1432. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are only wearing your see-through underwear.</font>'
  1433. $stat_clothes_tooltip = 'You are wearing your see-through underwear.'
  1434. $stat_clothes_msg = 'You are only wearing your see-through underwear.'
  1435. else
  1436. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are only wearing your see-through panties and bra.</font>'
  1437. $stat_clothes_tooltip = 'You are wearing your see-through panties and bra.'
  1438. $stat_clothes_msg = 'You are only wearing your see-through panties and bra.'
  1439. end
  1440. elseif $pantyworntype ! 'none':
  1441. if $braworntype = 'none':
  1442. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are only wearing your panties and your boobs sway invitingly as you walk.</font>'
  1443. $stat_clothes_tooltip = 'You are wearing your panties.'
  1444. $stat_clothes_msg = 'You are only wearing your panties and your boobs sway invitingly as you walk.'
  1445. elseif $braworntype = 'exhibitionist':
  1446. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are only wearing your see-through bra and panties.</font>'
  1447. $stat_clothes_tooltip = 'You are wearing your see-through bra and panties.'
  1448. $stat_clothes_msg = 'You are only wearing your see-through bra and panties.'
  1449. else
  1450. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are only wearing your underwear.</font>'
  1451. $stat_clothes_tooltip = 'You are wearing your underwear.'
  1452. $stat_clothes_msg = 'You are wearing your underwear.'
  1453. end
  1454. else
  1455. if $braworntype ! 'none':
  1456. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #AB052A>You are only wearing your bra, leaving your pussy and ass completely exposed.</font>'
  1457. $stat_clothes_tooltip = 'You are only wearing your bra.'
  1458. $stat_clothes_msg = 'You are only wearing your bra, leaving your pussy and ass completely exposed.'
  1459. else
  1460. if pcs_inhib < 5:
  1461. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color = #AB052A>You are completely naked, and it makes you feel nervous and ashamed.</font></b>'
  1462. $stat_clothes_tooltip = 'You don''t like being naked.'
  1463. $stat_clothes_msg = 'You are completely naked, and it makes you feel nervous and ashamed.'
  1464. elseif pcs_inhib < 20:
  1465. if enable_extra_msg = 1: $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>'
  1466. $stat_clothes_tooltip = 'It''s a bit exciting to be naked.'
  1467. $stat_clothes_msg = 'You are completely naked, you''re not too comfortable with nudity but it is a little exciting.'
  1468. elseif pcs_inhib >= 90:
  1469. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color=#0064FF>You are completely naked, which is far better than having to wear clothes.</font></b>'
  1470. $stat_clothes_tooltip = 'Being naked is far better than wearing clothes.'
  1471. $stat_clothes_msg = 'You are completely naked, which is far better than having to wear clothes.'
  1472. else
  1473. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color = #FF00FF>You are completely naked. It''s exciting and you feel tingly inside.</font></b>'
  1474. $stat_clothes_tooltip = 'It''s exciting to be naked.'
  1475. $stat_clothes_msg = 'You are completely naked. It''s exciting and you feel tingly inside.'
  1476. end
  1477. end
  1478. end
  1479. $stat_clothes_style = 'nude'
  1480. elseif $clothingworntype = 'exercise':
  1481. if PCloBimbo = 1 and cheatBimbo = 0:
  1482. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1483. $stat_clothes_msg = 'You are wearing a gym outfit a bimbo would wear.'
  1484. $stat_clothes_tooltip = 'Bimbo gym outfit.'
  1485. $stat_clothes_style = 'exercise_b'
  1486. elseif CloInhibit >= 30:
  1487. $stat_clothes_msg = 'You''re wearing a revealing gym outfit.'
  1488. $stat_clothes_tooltip = 'Revealing gym outfit.'
  1489. $stat_clothes_style = 'exercise_s'
  1490. elseif CloInhibit >= 20:
  1491. $stat_clothes_msg = 'You''re wearing a slightly revealing gym outfit.'
  1492. $stat_clothes_tooltip = 'Slightly revealing gym outfit.'
  1493. $stat_clothes_style = 'exercise_s'
  1494. else
  1495. $stat_clothes_msg = 'You''re wearing a normal gym outfit.'
  1496. $stat_clothes_tooltip = 'Normal gym outfit.'
  1497. $stat_clothes_style = 'exercise'
  1498. end
  1499. elseif $clothingworntype = 'swimwear':
  1500. if (CloInhibit >= 50 or CloThinness = 6) and PCloBimbo = 1 and cheatBimbo = 0:
  1501. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1502. $stat_clothes_msg = 'You''re wearing an exhibitionist swimsuit a bimbo would wear.'
  1503. $stat_clothes_tooltip = 'Exhibitionist/Bimbo swimsuit.'
  1504. $stat_clothes_style = 'swimsuit_eb'
  1505. elseif (CloInhibit >= 50 or CloThinness = 6) and (PCloBimbo = 0 or cheatBimbo = 1):
  1506. $stat_clothes_msg = 'You are wearing an exhibitionist swimsuit.'
  1507. $$stat_clothes_tooltip = 'Exhibitionist swimsuit.'
  1508. $stat_clothes_style = 'swimsuit_e'
  1509. elseif PCloBimbo = 1 and cheatBimbo = 0:
  1510. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1511. $stat_clothes_msg = 'You are wearing a swimsuit a bimbo would wear.'
  1512. $stat_clothes_tooltip = 'Bimbo swimsuit.'
  1513. $stat_clothes_style = 'swimsuit_b'
  1514. elseif CloInhibit >= 40:
  1515. $stat_clothes_msg = 'You''re wearing a very revealing swimsuit.'
  1516. $stat_clothes_tooltip = 'Very revealing swimsuit.'
  1517. $stat_clothes_style = 'swimsuit_s'
  1518. elseif CloInhibit >= 30:
  1519. $stat_clothes_msg = 'You''re wearing a revealing swimsuit.'
  1520. $stat_clothes_tooltip = 'Revealing swimsuit.'
  1521. $stat_clothes_style = 'swimsuit_s'
  1522. elseif CloInhibit >= 25:
  1523. $stat_clothes_msg = 'You''re wearing a slightly revealing swimsuit.'
  1524. $stat_clothes_tooltip = 'Slightly revealing swimsuit.'
  1525. $stat_clothes_style = 'swimsuit_s'
  1526. else
  1527. $stat_clothes_msg = 'You''re wearing a normal swimsuit.'
  1528. $stat_clothes_tooltip = 'Normal swimsuit.'
  1529. $stat_clothes_style = 'swimsuit'
  1530. end
  1531. elseif $clothingworntype = 'office':
  1532. if PCloStyle = 4 and PCloBimbo = 1 and cheatBimbo = 0:
  1533. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1534. $stat_clothes_msg = 'You''re wearing an office dress a bimbo or a prostitute would wear.'
  1535. $stat_clothes_tooltip = 'Prostitute/Bimbo office dress.'
  1536. $stat_clothes_style = 'office_pb'
  1537. elseif PCloStyle = 4 and (PCloBimbo = 0 or cheatBimbo = 1):
  1538. $stat_clothes_msg = 'You''re wearing an office dress a prostitute would wear.'
  1539. $stat_clothes_tooltip = 'Prostitute office dress.'
  1540. $stat_clothes_style = 'office_p'
  1541. elseif (CloExhibit >= 40 or CloThinness = 6) and PCloBimbo = 1 and cheatBimbo = 0:
  1542. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1543. $stat_clothes_msg = 'You''re wearing an exhibitionist office dress a bimbo would wear.'
  1544. $stat_clothes_tooltip = 'Exhibitionist/Bimbo office office dress.'
  1545. $stat_clothes_style = 'office_eb'
  1546. elseif (CloExhibit >= 40 or CloThinness = 6) and (PCloBimbo = 0 or cheatBimbo = 1):
  1547. $stat_clothes_msg = 'You are wearing an exhibitionist office dress.'
  1548. $$stat_clothes_tooltip = 'Exhibitionist office dress.'
  1549. $stat_clothes_style = 'office_e'
  1550. elseif PCloBimbo = 1 and cheatBimbo = 0:
  1551. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1552. $stat_clothes_msg = 'You are wearing an office dress a bimbo would wear.'
  1553. $stat_clothes_tooltip = 'Bimbo office dress.'
  1554. $stat_clothes_style = 'office_b'
  1555. elseif CloExhibit >= 30:
  1556. $stat_clothes_msg = 'You''re wearing a very revealing office dress.'
  1557. $stat_clothes_tooltip = 'Very revealing office dress.'
  1558. $stat_clothes_style = 'office_s'
  1559. elseif CloExhibit >= 25:
  1560. $stat_clothes_msg = 'You''re wearing a revealing office dress.'
  1561. $stat_clothes_tooltip = 'Revealing office dress.'
  1562. $stat_clothes_style = 'office_s'
  1563. elseif CloExhibit >= 20:
  1564. $stat_clothes_msg = 'You''re wearing a slightly revealing office dress.'
  1565. $stat_clothes_tooltip = 'Slightly revealing office dress.'
  1566. $stat_clothes_style = 'office_s'
  1567. else
  1568. $stat_clothes_msg = 'You''re wearing a normal office dress.'
  1569. $stat_clothes_tooltip = 'Normal office dress.'
  1570. $stat_clothes_style = 'office'
  1571. end
  1572. elseif $clothingworntype = 'school':
  1573. if PCloStyle = 4 and PCloBimbo = 1 and cheatBimbo = 0:
  1574. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1575. $stat_clothes_msg = 'You''re wearing a school uniform a prostitute or bimbo would wear.'
  1576. $stat_clothes_msg = 'Prostitute/Bimbo school uniform'
  1577. $stat_clothes_style = 'uniform_pb'
  1578. elseif PCloStyle = 4 and (PCloBimbo = 0 or cheatBimbo = 1):
  1579. $stat_clothes_msg = 'You''re wearing a school uniform a prostitute would wear.'
  1580. $stat_clothes_tooltip = 'Prostitute school uniform.'
  1581. $stat_clothes_style = 'uniform_p'
  1582. elseif PCloBimbo = 1 and cheatBimbo = 0:
  1583. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1584. $stat_clothes_msg = 'You''re wearing a school uniform a bimbo would wear.'
  1585. $stat_clothes_tooltip = 'Bimbo school uniform.'
  1586. $stat_clothes_style = 'uniform_b'
  1587. elseif CloExhibit >= 30:
  1588. $stat_clothes_msg = 'You''re wearing a very revealing school uniform.'
  1589. $stat_clothes_tooltip = 'Very revealing school uniform.'
  1590. $stat_clothes_style = 'uniform_s'
  1591. elseif CloExhibit >= 25:
  1592. $stat_clothes_msg = 'You''re wearing a revealing school uniform.'
  1593. $stat_clothes_tooltip = 'Revealing school uniform.'
  1594. $stat_clothes_style = 'uniform_s'
  1595. elseif CloExhibit >= 20:
  1596. $stat_clothes_msg = 'You''re wearing a slightly revealing school uniform.'
  1597. $stat_clothes_tooltip = 'Slightly revealing school uniform.'
  1598. $stat_clothes_style = 'uniform_s'
  1599. else
  1600. $stat_clothes_msg = 'You''re wearing a normal school uniform.'
  1601. $stat_clothes_tooltip = 'Normal school uniform.'
  1602. $stat_clothes_style = 'uniform'
  1603. end
  1604. elseif $clothingworntype = 'cheap' and clothingwornnumber = '414':
  1605. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color = "yellow">You are wearing an old hessian sack the hunters gave you.</font></b>'
  1606. $stat_clothes_tooltip = 'You''re wearing an hessian sack.'
  1607. $stat_clothes_msg = 'You are wearing an old hessian sack the hunters gave you.'
  1608. $stat_clothes_style = 'clothes'
  1609. else
  1610. if PCloStyle = 4 and PCloBimbo = 1 and cheatBimbo = 0:
  1611. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1612. $stat_clothes_msg = 'You''re wearing an outfit a bimbo or a prostitute would wear.'
  1613. $stat_clothes_tooltip = 'Prostitute/Bimbo outfit.'
  1614. $stat_clothes_style = 'clothes_pb'
  1615. elseif PCloStyle = 4 and (PCloBimbo = 0 or cheatBimbo = 1):
  1616. $stat_clothes_msg = 'You''re wearing an outfit a prostitute would wear.'
  1617. $stat_clothes_tooltip = 'Prostitute outfit.'
  1618. $stat_clothes_style = 'clothes_p'
  1619. elseif (CloExhibit >= 40 or CloThinness = 6) and PCloBimbo = 1 and cheatBimbo = 0:
  1620. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1621. $stat_clothes_msg = 'You''re wearing exhibitionist clothes a bimbo would wear.'
  1622. $stat_clothes_tooltip = 'Exhibitionist/Bimbo outfit.'
  1623. $stat_clothes_style = 'clothes_eb'
  1624. elseif (CloExhibit >= 40 or CloThinness = 6) and (PCloBimbo = 0 or cheatBimbo = 1):
  1625. $stat_clothes_msg = 'You are wearing exhibitionist clothes.'
  1626. $$stat_clothes_tooltip = 'Exhibitionist outfit.'
  1627. $stat_clothes_style = 'clothes_e'
  1628. elseif PCloBimbo = 1 and cheatBimbo = 0:
  1629. if enable_extra_msg = 1: $stat_msg += '<BR><font color = #FF00FF>You are dressed as a bimbo</font>'
  1630. $stat_clothes_msg = 'You are wearing bimbo clothes.'
  1631. $stat_clothes_tooltip = 'Bimbo outfit.'
  1632. $stat_clothes_style = 'clothes_b'
  1633. elseif CloExhibit >= 30:
  1634. $stat_clothes_msg = 'You''re wearing very revealing clothes.'
  1635. $stat_clothes_tooltip = 'Very revealing outfit.'
  1636. $stat_clothes_style = 'clothes_s'
  1637. elseif CloExhibit >= 25:
  1638. $stat_clothes_msg = 'You''re wearing revealing clothes.'
  1639. $stat_clothes_tooltip = 'Revealing outfit.'
  1640. $stat_clothes_style = 'clothes_s'
  1641. elseif CloExhibit >= 20:
  1642. $stat_clothes_msg = 'You''re wearing slightly revealing clothes.'
  1643. $stat_clothes_tooltip = 'Slightly revealing outfit.'
  1644. $stat_clothes_style = 'clothes_s'
  1645. else
  1646. $stat_clothes_msg = 'You''re wearing normal clothes.'
  1647. $stat_clothes_tooltip = 'Normal outfit.'
  1648. $stat_clothes_style = 'clothes'
  1649. end
  1650. end
  1651. $stat_clothes_msg += '<br><img src="<<$stat_img_temp>>">'
  1652. if frost > 0:
  1653. if frost <= 5:
  1654. if enable_extra_msg = 1: $stat_msg += '<BR><b><font>You are a little chilly.</font></b>'
  1655. $stat_frost_msg = 'You are a little chilly.'
  1656. elseif frost < 11:
  1657. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">You are cold.</font></b>'
  1658. $stat_frost_msg = 'You are cold.'
  1659. else
  1660. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">You are freezing.</font></b>'
  1661. $stat_frost_msg = 'You are freezing.'
  1662. end
  1663. end
  1664. if sick > 0:
  1665. if sick = 1:
  1666. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">This is not good, a tickle in the throat and a little runny nose.</font></b>'
  1667. $stat_sick_tooltip = 'You are have a mild cold.'
  1668. $stat_sick_msg = 'This is not good, a tickle in the throat and a little runny nose.'
  1669. elseif sick < 24:
  1670. if enable_extra_msg = 1: $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>'
  1671. $stat_sick_tooltip = 'You are have a cold.'
  1672. $stat_sick_msg = 'You have chills. You nose is running and throat is raw, you cough and sneeze - it looks like you got a cold.'
  1673. elseif sick < 48:
  1674. if enable_extra_msg = 1: $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>'
  1675. $stat_sick_tooltip = 'You are have a serious cold.'
  1676. $stat_sick_msg = '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.'
  1677. elseif sick < 72:
  1678. if enable_extra_msg = 1: $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>'
  1679. $stat_sick_tooltip = 'You are have the flu.'
  1680. $stat_sick_msg = '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.'
  1681. else
  1682. if enable_extra_msg = 1: $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>'
  1683. $stat_sick_tooltip = 'You are seriously sick.'
  1684. $stat_sick_msg = '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.'
  1685. end
  1686. end
  1687. $stat_school_msg = ''
  1688. $stat_school_tooltip = ''
  1689. if StoryLine = 1 and SchoolAtestat = 0 and kanikuli = 0 and week < 6 and hour < 9:
  1690. if enable_extra_msg = 1: $stat_msg += '<BR><b>You have to be at school between before 08:00 if you don''t want to be late.</b>'
  1691. $stat_school_msg = 'You have to be at school between before 08:00 if you don''t want to be late.'
  1692. $stat_school_tooltip = 'School starts at 08:00.'
  1693. elseif StoryLine = 1 and SchoolAtestat = 0 and week = 6 and hour < 9 and detention_set = 1 and SchoolAtestat = 0:
  1694. if enable_extra_msg = 1: $stat_msg += '<BR><b>You have detention this morning and must be at school before 09:00.</b>'
  1695. $stat_school_msg = 'You have detention this morning and must be at school before 09:00.'
  1696. $stat_school_tooltip = 'Detention starts at 09:00.'
  1697. end
  1698. if $stat_school_msg ! '': $stat_school_msg += $stat_school_schedule
  1699. !!------------------ Things without an icon (Start) -------------------
  1700. if fingal > 0:$stat_msg += '<BR><b><font color="red">You have a black eye.</font></b>'
  1701. if mosol >= 50:
  1702. $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>'
  1703. elseif mosol >= 30:
  1704. $stat_msg += '<BR><b><font color="red">Your pussy feels a little itchy, it seems to be from rubbing against your clothing.</font></b>'
  1705. end
  1706. 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>'
  1707. if $mudnerd ! '':$stat_msg += '<BR><<$mudnerd>>'
  1708. if home_owned[1] > 0:
  1709. $streetev_home = 'your apartment'
  1710. elseif tanwork = 1:
  1711. $streetev_home = 'Tanya''s apartment'
  1712. elseif student > 0:
  1713. $streetev_home = 'your dorm'
  1714. elseif home_owned[2] = 1:
  1715. $streetev_home = 'outside your apartment block'
  1716. else
  1717. $streetev_home = 'the train station'
  1718. end
  1719. if StrongNarkota > 20 or jointhigh > 0:$stat_msg += '<BR><b><font color="red">You are stoned.</font></b>'
  1720. if amphHigh > 0: $stat_msg += '<BR><b><font color="red">You feel a little wired.</font></b>'
  1721. !!--------------- Storyline = 1 Events (Start) ------------------------
  1722. if StoryLine = 1 and 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.'
  1723. if StoryLine = 1 and 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.'
  1724. if StoryLine = 1 and day = nyp_day and month = 12 and SchoolAtestat = 0 and hour >= 5 and hour <= 14 and StoryLine = 1:
  1725. $stat_msg += '<BR>At 14:00 your school''s New Year''s party will start.'
  1726. elseif StoryLine = 1 and InvitationToDimkaNYparty = 1 and month = 12 and day = 31:
  1727. $stat_msg += '<BR><b>Go to the residential area between 15:00 and 18:00 to go to Dimka''s New Year party.</b>'
  1728. end
  1729. if StoryLine = 1 and 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>'
  1730. if StoryLine = 1 and 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>'
  1731. !!--------------- Storyline = 1 Events (End) ------------------------
  1732. if home_owned[1] = 1 and home_owned[4] > 0:
  1733. $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>>.'
  1734. elseif home_owned[1] = 1:
  1735. $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>>.'
  1736. elseif home_owned[4] > 0:
  1737. $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>>.'
  1738. end
  1739. if $nichStatMsg ! '': $stat_msg += "<br><b><<$nichStatMsg>></b>"
  1740. if npc_QW['A113'] = 1: $stat_msg += '<br>You owe Vadim Bely <<belgangpay>> <b><b>₽</b></b> and you need to pay him <<belgangpayweek>> <b>₽</b></b> this week.'
  1741. if display_bb = 1:
  1742. if boletus + bilberry > 0:
  1743. if boletus + bilberry >= 10:
  1744. $stat_msg +='<br><font color = Olive>You have a full basket. </font> '
  1745. else
  1746. $stat_msg +='<br><font color = Olive>In Your basket: </font>'
  1747. end
  1748. if hour > 6 and (month < 6 or month > 9) and boletus + bilberry > 0:
  1749. boletus = 0 & bilberry = 0
  1750. '<br>You throw away your mushrooms and berries.'
  1751. end
  1752. if boletus > 0:$stat_msg +='Mushrooms: <b><<boletus>></b> kg. '
  1753. if bilberry > 0:$stat_msg +='Berries: <b><<bilberry>></b> kg. '
  1754. end
  1755. end
  1756. !!------------------ Things without an icon (End) -------------------
  1757. $stat_bfgf_msg_0 = ''
  1758. $stat_bfgf_tooltip_0 = ''
  1759. $stat_bfgf_msg_1 = ''
  1760. $stat_bfgf_tooltip_1 = ''
  1761. $stat_bfgf_msg_2 = ''
  1762. $stat_bfgf_tooltip_2 = ''
  1763. if hour < meethour[0] and svidanie[0] = 1:
  1764. if enable_extra_msg = 1: $stat_msg += '<BR><<$loverdesc[0]>> will be waiting for you near <<$streetev_home>> at <<meethour[0]>>:00.'
  1765. $stat_bfgf_msg_0 = '<<$loverdesc[0]>> will be waiting for you near <<$streetev_home>> at <<meethour[0]>>:00.'
  1766. $stat_bfgf_tooltip_0 = 'Your date with <<$loverdesc[0]>> starts at <<meethour[0]>>:00 near <<$streetev_home>>.'
  1767. elseif hour = meethour[0] and svidanie[0] = 1:
  1768. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red"><<$loverdesc[0]>> is waiting for you by <<$streetev_home>>.</font></b>'
  1769. $stat_bfgf_msg_0 = '<<$loverdesc[0]>> is waiting for you by <<$streetev_home>>.'
  1770. $stat_bfgf_tooltip_0 = '<<$loverdesc[0]>> is waiting near <<$streetev_home>>.'
  1771. elseif meetday[0] < daystart and svidanie[0] = 1:
  1772. pcs_lovers_rel[0] -= 10 & svidanie[0] = 0
  1773. end
  1774. if hour < meethour[1] and svidanie[1] = 1:
  1775. if enable_extra_msg = 1: $stat_msg += '<BR><<$loverdesc[1]>> will be waiting for you near <<$streetev_home>> at <<meethour[1]>>:00.'
  1776. $stat_bfgf_msg_1 = '<<$loverdesc[1]>> will be waiting for you near <<$streetev_home>> at <<meethour[1]>>:00.'
  1777. $stat_bfgf_tooltip_1 = 'Your date with <<$loverdesc[1]>> starts at <<meethour[1]>>:00 near <<$streetev_home>>.'
  1778. elseif hour = meethour[1] and svidanie[1] = 1:
  1779. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red"><<$loverdesc[1]>> is waiting for you by <<$streetev_home>>.</font></b>'
  1780. $stat_bfgf_msg_1 = '<<$loverdesc[1]>> is waiting for you by <<$streetev_home>>.'
  1781. $stat_bfgf_tooltip_1 = '<<$loverdesc[1]>> is waiting near <<$streetev_home>>.'
  1782. elseif meetday[1] < daystart and svidanie[1] = 1:
  1783. pcs_lovers_rel[1] -= 10 & svidanie[1] = 0
  1784. end
  1785. if hour < meethour[2] and svidanie[2] = 1:
  1786. if enable_extra_msg = 1: $stat_msg += '<BR><<$loverdesc[2]>> will be waiting for you near <<$streetev_home>> at <<meethour[2]>>:00.'
  1787. $stat_bfgf_msg_2 = '<<$loverdesc[2]>> will be waiting for you near <<$streetev_home>> at <<meethour[2]>>:00.'
  1788. $stat_bfgf_tooltip_2 = 'Your date starts at <<meethour[2]>>:00 near <<$streetev_home>>.'
  1789. elseif hour = meethour[2] and svidanie[2] = 1:
  1790. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red"><<$loverdesc[2]>> is waiting for you by <<$streetev_home>>.</font></b>'
  1791. $stat_bfgf_msg_2 = '<<$loverdesc[2]>> is waiting for you by <<$streetev_home>>.'
  1792. $stat_bfgf_tooltip_2 = '<<$loverdesc[2]>> is waiting near <<$streetev_home>>.'
  1793. elseif meetday[2] < daystart and svidanie[2] = 1:
  1794. pcs_lovers_rel[2] -= 10 & svidanie[2] = 0
  1795. end
  1796. if young_shop_work = 1:
  1797. if hour = 16 and minut <= 5 and week < 6 and inWorkYoungShop = 0:
  1798. 'You are late for work at Pussy-Cats.'
  1799. elseif hour = 16 and week < 6 and inWorkYoungShop = 0 and misscheck ! daystart:
  1800. misscheck = daystart
  1801. young_shop_miss += 1
  1802. $stat_msg += '<BR><b><font color="red">You missed work.</font></b>'
  1803. elseif (hour = 14 or hour = 15) and week < 6:
  1804. $stat_msg += '<BR><b><font color="red">You start work at Pussy-Cats today at 16:00.</font></b>'
  1805. end
  1806. end
  1807. $stat_court_msg = ''
  1808. if courthearing_date - 1 = daystart:
  1809. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">You have a court hearing tomorrow between 07:00 and 11:00. The court is located in the city center of St.Petersburg.</font></b>'
  1810. $stat_court_msg = 'You have a court hearing tomorrow between 07:00 and 11:00. The court is located in the city center of St.Petersburg.'
  1811. $stat_court_tooltip = 'Court hearing tomorrow (07:00 and 11:00).'
  1812. elseif courthearing_date = daystart and hour < 11:
  1813. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">You have a court hearing today between 07:00 and 11:00. The court is located in the city center of St.Petersburg.</font></b>'
  1814. $stat_court_msg = 'You have a court hearing today between 07:00 and 11:00. The court is located in the city center of St.Petersburg.'
  1815. $stat_court_tooltip = 'Court hearing today (07:00 - 11:00).'
  1816. end
  1817. if enable_extra_msg = 1:
  1818. if young_shop_work1 = 1:
  1819. if hour = 9 and minut <= 5 and week >= 6 and inWorkYoungShop = 0:
  1820. $stat_msg += 'You are late for work at Pussy-Cats.'
  1821. elseif hour = 9 and week >= 6 and inWorkYoungShop = 0 and misscheck ! daystart:
  1822. misscheck = daystart
  1823. young_shop_miss += 1
  1824. $stat_msg += '<BR><b><font color="red">You missed work.</font></b>'
  1825. elseif (hour = 7 or hour = 8) and week >= 6:
  1826. $stat_msg += '<BR><b><font color="red">By 9:00 you have to be at Pussy-Cats to start work.</font></b>'
  1827. end
  1828. end
  1829. if young_shop_work2 = 1:
  1830. if hour = 9 and minut <= 5 and week < 6 and inWorkYoungShop = 0:
  1831. 'You are late for work at Pussy-Cats.'
  1832. elseif hour = 9 and week < 6 and inWorkYoungShop = 0 and misscheck ! daystart:
  1833. misscheck = daystart
  1834. young_shop_miss += 1
  1835. $stat_msg += '<BR><b><font color="red">You missed work.</font></b>'
  1836. elseif (hour = 7 or hour = 8) and week < 6:
  1837. $stat_msg += '<BR><b><font color="red">By 9:00 you have to be at Pussy-Cats to start work.</font></b>'
  1838. end
  1839. end
  1840. if workrin = 1:
  1841. if week = 2 or week = 4 or week = 6:
  1842. if hour = 7:$stat_msg += '<BR><b><font color="red">At 8 o''clock you start work on the market.</font></b>'
  1843. if hour = 8:$stat_msg += '<BR><b><font color="red">You need to work on the market now.</font></b>'
  1844. end
  1845. end
  1846. if model > 0 and model_week = (daystart - week) / 7 and model_job_week >= 2:
  1847. $stat_msg += '<BR><b>You have no more modeling jobs available this week.</b>'
  1848. elseif model > 0 and model_week < (daystart - week) / 7 and model_job_week = 1:
  1849. $stat_msg += '<BR><b>You can get paid for 1 more modeling job this week.</b>'
  1850. elseif model > 0 and model_week < (daystart - week) / 7 and model_job_week < 1:
  1851. $stat_msg += '<BR><b>You can get paid for 2 modeling jobs this week.</b>'
  1852. end
  1853. if pornstack > 0:
  1854. porndays = 0
  1855. :pfilmtime
  1856. if porndays < 200 and pfilmday[porndays] = 0: porndays += 1 & jump 'pfilmtime'
  1857. end
  1858. if pornstack > 0 and pfilmday[0] = 0:
  1859. if pfilmday[1] = 0:
  1860. $stat_msg += '<br><b>You will star in another porno in <<porndays>> days.</b>'
  1861. else
  1862. $stat_msg += '<br><b>You have a porno shoot scheduled tomorrow.</b>'
  1863. end
  1864. end
  1865. if pfilmday[0] > 0:
  1866. if pornnow = 1:
  1867. $stat_msg += '<br><b>You are at a porn shooting.</b>'
  1868. else
  1869. if hour < 11: $stat_msg += '<br><b>You are expected in the porno studio at 10:00.</b>'
  1870. if hour >= 11 and hour < 13: $stat_msg += '<br><b>You should be at the porno studio, shooting!</b>'
  1871. if hour >= 13: $stat_msg += '<br><b>You missed a scheduled porno shoot!</b>'
  1872. end
  1873. end
  1874. if pornmiss = 1: $stat_msg += '<br><b>You missed a scheduled porno shoot!</b>'
  1875. if prodcosttrue > 0: $stat_msg += '<br><b>You owe money to the porn studio <<prodcost>>?</b>'
  1876. if firstkasting > 0 and pfilmNO < 1:
  1877. if pornstack <= 10:
  1878. $stat_msg += '<br>You are currently unable to book any more porn shoots at the Porn Studio.'
  1879. elseif pornstack = 11:
  1880. $stat_msg += '<br>You can contract <<10-pornstack>> porn shoot at the Porn Studio.'
  1881. else
  1882. $stat_msg += '<br>You can contract up to <<10-pornstack>> porn shoots at the Porn Studio.'
  1883. end
  1884. end
  1885. 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>'
  1886. 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>'
  1887. 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>'
  1888. 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>'
  1889. 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>'
  1890. 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>'
  1891. 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>'
  1892. 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>'
  1893. end
  1894. $stat_hypno_msg = ''
  1895. $stat_hypno_tooltip = ''
  1896. if hypnoAddict > 0:
  1897. if hypnoWithdrawal = 1:
  1898. if missCum >= timeTresh:
  1899. if enable_extra_msg = 1: $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>'
  1900. $stat_hypno_msg = 'You really miss the feeling of sperm in your body, you are strangely craving it. You should talk to your therapist about it.'
  1901. $stat_hypno_tooltip = 'Talk to your therapist.'
  1902. else
  1903. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">You feel like talking to your therapist. You miss your sessions.</font></b>'
  1904. $stat_hypno_msg = 'You feel like talking to your therapist. You miss your sessions.'
  1905. $stat_hypno_tooltip = 'Maybe visit your therapist.'
  1906. end
  1907. elseif hypnoWithdrawal = 2:
  1908. if missCum >= timeTresh:
  1909. if enable_extra_msg = 1: $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>'
  1910. $stat_hypno_msg = 'You want some sperm inside of you NOW! You have to talk to your therapist, immediately.'
  1911. $stat_hypno_tooltip = 'Talk to your therapist, immediately.'
  1912. else
  1913. if enable_extra_msg = 1: $stat_msg += '<BR><b><font color="red">You need to talk to your therapist. You feel unbalanced without your sessions.</font></b>'
  1914. $stat_hypno_msg = 'You need to talk to your therapist. You feel unbalanced without your sessions.'
  1915. $stat_hypno_tooltip = 'Talk to your therapist.'
  1916. end
  1917. else
  1918. 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>'
  1919. $stat_hypno_msg = 'You miss the feeling of sperm in your body and you feel moody.'
  1920. $stat_hypno_tooltip = 'Maybe visit your therapist.'
  1921. end
  1922. end
  1923. gs 'brother', 'brotherSexCount'
  1924. !! List Current Active Spells
  1925. if arrsize('spellComplete') > 0:
  1926. $tempSpellText="<br><b><font color='#FF99FF'>Active Spells</font></b>"
  1927. i=0
  1928. :ActiveSpellLoop
  1929. if i < arrsize('spellComplete'):
  1930. $tempSpellText += "<br><font color='#FF99FF'><<$spellName[$spellTimeName[i]]>></font>"
  1931. i += 1
  1932. jump 'ActiveSpellLoop'
  1933. end
  1934. $stat_msg += func('cleanHTML',$tempSpellText)
  1935. killvar '$tempSpellText'
  1936. killvar 'i'
  1937. end
  1938. !!zero checks marriage
  1939. proverka1 = 0
  1940. proverka2 = 0
  1941. proverka3 = 0
  1942. proverka4 = 0
  1943. proverka5 = 0
  1944. if disable_LoadSave = 0:
  1945. $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>'
  1946. elseif disable_LoadSave = 2:
  1947. $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>'
  1948. end
  1949. if PillToggle = 1 and tabletki > 0:
  1950. Stabletki += tabletki
  1951. tabletki = 0
  1952. elseif PillToggle = 0 and Stabletki > 0:
  1953. tabletki += Stabletki
  1954. Stabletki = 0
  1955. end
  1956. if CondomToggle = 1 and prezik > 0:
  1957. Sprezik += prezik
  1958. prezik = 0
  1959. elseif CondomToggle = 0 and Sprezik > 0:
  1960. prezik += Sprezik
  1961. Sprezik = 0
  1962. end
  1963. $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>'
  1964. if Enable_statimg_loc = 2: $stat_msg += '<br><<$stat_imgtool_msg>><br><<$stat_imgextra_msg>>'
  1965. killvar 'stat_imgtool_msg'
  1966. killvar 'stat_imgextra_msg'
  1967. if Enable_statfsize > 0: $stat_msg += '</font>' & !disable this, all texts comes from pl will have the same font size, like[time]
  1968. if Enable_faceturn = 1: view FUNC('$face_image')
  1969. if Enable_Android = 0:
  1970. pl '<<$stat_msg>>'
  1971. else
  1972. '<<$stat_android>>'
  1973. $stat_msg = 'Android mode, <a href="exec:gs ''$menu_obnovit''">Refresh</a><<$stat_msg>>'
  1974. end
  1975. if icon_reset = 0:
  1976. icon_reset = 1
  1977. gs 'stat'
  1978. else
  1979. icon_reset = 0
  1980. end
  1981. --- stat_display ---------------------------------