stat_display.qsrc 114 KB

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