stat_display.qsrc 136 KB

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