stat_display.qsrc 121 KB

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