stat_display 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123
  1. # stat_display
  2. if $location_type = 'public_outdoors' or $location_type = 'secluded' or $location_type = 'event_outdoors':
  3. gs 'outdoors', 'main'
  4. else
  5. gs 'indoors'
  6. end
  7. !!Sex stat update
  8. stat['mast'] += mastr & mastr = 0
  9. stat['hj'] += hj & hj = 0
  10. stat['bj'] += bj & bj = 0
  11. stat['vaginal'] += sex & sex = 0
  12. stat['anal'] += anal & anal = 0
  13. stat['cuni'] += kuni & kuni = 0
  14. stat['anal_strap_give'] += pegging & pegging = 0
  15. !!!!!!!!!!!!!!!!!!!!!
  16. !!!Pain calculation!!!
  17. !!!!!!!!!!!!!!!!!!!!!
  18. pain['body1'] = pain['head'] + pain['hair'] + pain['ears'] + pain['eyebrows'] + pain['eyes'] + pain['cheeks'] + pain['nose'] + pain['mouth'] + pain['lips'] + pain['tongue']
  19. pain['body2'] = pain['throat'] + pain['neck'] + pain['back'] + pain['asscheeks'] + pain['asshole'] + pain['hips'] + pain['thighs'] + pain['legL'] + pain['legR'] + pain['feet']
  20. pain['body3'] = pain['toes'] + pain['shoulders'] + pain['armL'] + pain['armR'] + pain['hands'] + pain['fingers'] + pain['chest'] + pain['breasts'] + pain['nipples'] + pain['ribs']
  21. pain['body4'] = pain['tummy'] + pain['pubic'] + pain['vaginal'] + pain['labia'] + pain['clitoris'] + pain['urethra'] + pain['cervix']
  22. pain['total'] = pain['body1'] + pain['body2'] + pain['body3'] + pain['body4'] + (vgape * 8) + (agape * 10) + (spanked * 24)
  23. if pain['total'] > 100: pain['total'] = 100
  24. if alko > 6:
  25. pain['relief'] = 50
  26. elseif alko > 3:
  27. pain['relief'] = 20
  28. end
  29. if StrongNarkota > 0:
  30. pain['relief'] = 90
  31. elseif nark > 0:
  32. pain['relief'] = 60
  33. elseif pain['killer'] > 10:
  34. pain['relief'] = 50
  35. end
  36. if pain['relief'] ! 0:
  37. if (pain['total'] / pain['relief']) > 0:
  38. pain['total'] = pain['total'] / pain['relief']
  39. elseif pain['total'] > 0:
  40. pain['total'] = 0
  41. end
  42. end
  43. if pain['total'] > 80:
  44. if (health * 5) >= healthmax: health = health * 20 / 100
  45. if (manna * 5) >= mannamax: manna = manna * 20 / 100
  46. elseif pain['total'] > 60:
  47. if (health * 5 / 2) >= healthmax: health = health * 40 / 100
  48. if (manna * 5 / 2) >= mannamax: manna = manna * 40 / 100
  49. elseif pain['total'] > 40:
  50. if (health * 5 / 3) >= healthmax: health = health * 60 / 100
  51. if (manna * 5 / 3) >= mannamax: manna = manna * 60 / 100
  52. elseif pain['total'] > 20:
  53. if (health * 5 / 4) >= healthmax: health = health * 80 / 100
  54. if (manna * 5 / 4) >= mannamax: manna = manna * 80 / 100
  55. elseif pain['total'] > 0:
  56. if (health * 10 / 9) >= healthmax: health = health * 90 / 100
  57. if (manna * 10 / 9) >= mannamax: manna = manna * 90 / 100
  58. end
  59. !!!!!!!!!!!!!!!!!!!!!
  60. !!!Beginning Description!!!
  61. !!!!!!!!!!!!!!!!!!!!!
  62. if son > 100: son = 100
  63. if water > 100: water = 100
  64. if Enable_statfsize>0:$stat_msg = '<font size=<<Enable_statfsize>>><<$stat_msg>>'
  65. if hour < 10:
  66. if minut > 9 :
  67. $stat_android = '<b> 0<<hour>>:<<minut>></b>'
  68. else
  69. $stat_android = '<b> 0<<hour>>:0<<minut>></b>'
  70. end
  71. else
  72. if minut > 9 :
  73. $stat_android = '<b> <<hour>>:<<minut>></b>'
  74. else
  75. $stat_android = '<b> <<hour>>:0<<minut>></b>'
  76. end
  77. end
  78. $stat_msg += '<BR><<$stat_android>> <<$week[week]>> <<day>> <<$month>> <<year>>'
  79. $stat_android += '<<$week[week]>> <<day>>/<<month>>, <<money>> ₽, <a href="exec:clr & pl $stat_android">Status</a>'
  80. ! $stat_android for short desc in android mode, $stat_msg for status bar.
  81. $stat_msg += '<BR>'
  82. $pockets = 'pockets'
  83. if bag > 0:$pockets = 'purse'
  84. $stat_msg += '<BR>You have <b><<money>> ₽</b> in your <<$pockets>>.'
  85. if karta > 0:$stat_msg += '<BR>You have <b><<karta>> ₽</b> in your bank account.'
  86. if stolmoney > 0:$stat_msg += '<BR>You have <b><<stolmoney>> ₽</b> in your desk drawer.'
  87. $stat_msg += '<BR>'
  88. if ETOmenu = 1:
  89. $stat_msg += '<BR><b><<$health>></b>'
  90. $stat_msg += '<BR><b><<$willpower>></b>'
  91. $stat_msg += '<BR><b><<$energy>></b>'
  92. $stat_msg += '<BR><b><<$water>></b>'
  93. $stat_msg += '<BR><b><<$son>></b>'
  94. else
  95. gs 'indik', '2', horny, horny
  96. $stat_msg += '<BR><<$ind>> Arousal'
  97. gs 'indik', '2', pain['total'], pain['total']
  98. $stat_msg += '<BR><<$ind>> Pain'
  99. gs 'indik', '1', health * 100 / healthmax, health
  100. $stat_msg += '<BR><<$ind>> Health'
  101. gs 'indik', '1', willpower * 100 / willpowermax, willpower
  102. $stat_msg += '<BR><<$ind>> Willpower'
  103. if mannamax <=0:
  104. gs 'indik', '1', 0, manna
  105. else
  106. gs 'indik', '1', manna * 100 / mannamax, manna
  107. end
  108. $stat_msg += '<BR><<$ind>> Mood'
  109. gs 'indik', '1', energy, energy
  110. $stat_msg += '<BR><<$ind>> Hunger'
  111. gs 'indik', '1', water, water
  112. $stat_msg += '<BR><<$ind>> Thirst'
  113. gs 'indik', '1', son, son
  114. $stat_msg += '<BR><<$ind>> Sleep'
  115. end
  116. $stat_msg += '<BR>'
  117. if Enable_showattr = 0:
  118. $stat_msg += '<BR> <a href="exec:Enable_showattr = 1 & gs ''$menu_obnovit''">Attributes</a>'
  119. end
  120. if Enable_showattr = 1:
  121. $stat_msg += '<BR> <a href="exec:Enable_showattr = 0 & gs ''$menu_obnovit''">Attributes:</a>'
  122. gs 'indik', '1',stren , stren
  123. $stat_msg += '<BR><<$ind>> Power'
  124. gs'indik','1',speed,speed
  125. $stat_msg += '<BR><<$ind>> Speed'
  126. gs'indik','1',agil,agil
  127. $stat_msg += '<BR><<$ind>> Agility'
  128. gs'indik','1',vital,vital
  129. $stat_msg += '<BR><<$ind>> Endurance'
  130. gs'indik','1',intel,intel
  131. $stat_msg += '<BR><<$ind>> Intelligence'
  132. gs'indik','1',will,will
  133. $stat_msg += '<BR><<$ind>> Spirit'
  134. gs'indik','1',react,react
  135. $stat_msg += '<BR><<$ind>> Reaction'
  136. gs'indik','1',vnesh / 2,vnesh
  137. $stat_msg += '<BR><<$ind>> Attractiveness'
  138. if SUB > 0:
  139. gs'indik','1',SUB,SUB
  140. $stat_msg += '<BR><<$ind>> Subordination'
  141. end
  142. if DOM > 0:
  143. gs'indik','1',DOM,DOM
  144. $stat_msg += '<BR><<$ind>> Dominance'
  145. end
  146. if SchoolAtestat = 0 and StoryLine > 0:
  147. gs'indik','1',Suspeh,Suspeh
  148. $stat_msg += '<BR><<$ind>> School Grades'
  149. end
  150. if exhibi > 0:
  151. gs'indik','1',exhibi*25,exhibi & !max at [dina], exhibi>=4
  152. $stat_msg += '<BR><<$ind>> exhibitionism'
  153. end
  154. end
  155. if Enable_showskill = 0:
  156. $stat_msg += '<BR> <a href="exec:Enable_showskill = 1 & gs ''$menu_obnovit''">Skills</a>'
  157. end
  158. if Enable_showskill = 1:
  159. st_count=0
  160. $show_table=''
  161. if workPTU > 1:gs'show_table','<<teachlevel>> Teacher credibility','2'
  162. if magik > 0:gs'show_table','<<magik>> Magic','2'
  163. if Jab > 0:gs'show_table','<<Jab>> Jabs','2'
  164. if Punch > 0:gs'show_table','<<Punch>> Power Strikes','2'
  165. if Kik > 0:gs'show_table','<<Kik>> Kicks','2'
  166. if KikDef > 0:gs'show_table','<<KikDef>> Defense','2'
  167. if beg > 0:gs'show_table','<<beg>> Running','2'
  168. if volleyboll > 0:gs'show_table','<<volleyboll>> Volleyball','2'
  169. if oficiant > 0:gs'show_table','<<oficiant>> Waitressing','2'
  170. if vokal > 0:gs'show_table','<<vokal>> Vocal','2'
  171. if dance > 0:gs'show_table','<<dance>> Dancing','2'
  172. if dancePRO > 0:gs'show_table','<<dancePRO>> Pro dancing','2'
  173. if stripdance > 0:gs'show_table','<<stripdance>> Striptease','2'
  174. if poledance > 0:gs'show_table','<<poledance>> Poledancing','2'
  175. if shoot > 0:gs'show_table','<<shoot>> Marksmanship','2'
  176. if poSkill > 0:gs'show_table','<<poSkill>> Tailoring','2'
  177. if chess > 0:gs'show_table','<<chess>> Chess','2'
  178. if st_count > 0 :$stat_msg += '<BR> <a href="exec:Enable_showskill = 0 & gs ''$menu_obnovit''">Skills:</a> <TABLE BORDER=1><<$show_table>></TR></TABLE>'
  179. end
  180. if Enable_showrelation = 0:
  181. $stat_msg += '<BR> <a href="exec:Enable_showrelation = 1 & gs ''$menu_obnovit''">Relations</a>'
  182. end
  183. if Enable_showrelation = 1:
  184. st_count=0
  185. $show_table=''
  186. if nastjaqw > 0:gs'show_table','<<nastjaqw>> Nastja','2'
  187. if tanya > 0:gs'show_table','<<tanya>> Tanya','2'
  188. if kat > 0:gs'show_table','<<kat>> Kate','2'
  189. if vika > 0:gs'show_table','<<vika>> Vika','2'
  190. if Irina > 0:gs'show_table','<<Irina>> Irina','2'
  191. if Tamara > 0:gs'show_table','<<Tamara>> Tamara','2'
  192. if alla > 0:gs'show_table','<<alla>> Alla','2'
  193. if masha > 0:gs'show_table','<<masha>> Masha','2'
  194. if Givi > 0:gs'show_table','<<Givi>> Givi Karapetovich','2'
  195. if Ashot > 0:gs'show_table','<<Ashot>> Ashot','2'
  196. if Dmitry > 0:gs'show_table','<<Dmitry>> Dima','2'
  197. if afra > 0:gs'show_table','<<afra>> Blacks','2'
  198. if trenerepa > 0:gs'show_table','<<trenerepa>> Mikhail Nikolaevich','2'
  199. if StoryLine > 0:
  200. if mother > 0:gs'show_table','<<mother>> Mother','2'
  201. if father > 0:gs'show_table','<<father>> Father','2'
  202. if sister > 0:gs'show_table','<<sister>> Sister','2'
  203. if brother > 0:gs'show_table','<<brother>> Brother','2'
  204. end
  205. if st_count > 0 :$stat_msg += '<BR> <a href="exec:Enable_showrelation = 0 & gs ''$menu_obnovit''">Relations:</a> <BR><TABLE BORDER=1> <<$show_table>></TR></TABLE>'
  206. end
  207. $stat_msg += '<BR>'
  208. if BuyHous = 2 and ArendHouseSL <= 0:'<font color="red"><b>The rent on your apartment expires today.</b></font>'
  209. if BuyHous = 2 and ArendHouseSL <= 0:
  210. '<font color="red"><b>The rent on your apartment expires today.</b></font>'
  211. if money >= 6000 or stolmoney >= 6000 or money + stolmoney >= 6000 or karta >= 6000:
  212. *P ' Renew with '
  213. if money >= 6000:
  214. *P ' <a href="exec:money -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash</a>'
  215. elseif stolmoney >= 6000:
  216. *P ' <a href="exec:stolmoney -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash from drawer</a>'
  217. elseif money + stolmoney >= 6000:
  218. !both < 6000, so money = money - 6000 + stolmoney
  219. *P ' <a href="exec:money -= 6000 - stolmoney & stolmoney = 0 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30" & gs ''$menu_obnovit''>cash from purse and drawer</a>'
  220. end
  221. !from purse, drawer or both
  222. if karta >= 6000: *P ' <a href="exec:karta -= 6000 & housr = 1 & BuyHous = 2 & ArendHouseSL += 30 & gs ''$menu_obnovit''">bank account</a>'
  223. else
  224. *P ' But you can''t afford to renew the lease.'
  225. end
  226. end
  227. if weatherDay = daystart: $stat_msg += '<BR><<$weather>>' & $stat_msg += '<BR>'
  228. if opPRE = 0: $stat_msg += '<BR><<$mop>> and your hair is <<$hapri>>.' & $stat_msg += '<BR>'
  229. if daystart - daylastperiod > 25 and thinkpreg = 0 and knowpreg = 0 and cycle ! 6 and pillcon <= 30000 and succubusflag ! 1:
  230. if daystart - daylastperiod < 31:
  231. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by <<daystart - daylastperiod - 24>> days.</b></font><BR>'
  232. elseif daystart - daylastperiod < 38:
  233. $stat_msg += '<BR><font color = #AB052A><b>Your period is late by more than a week!</b></font><BR>'
  234. elseif daystart - daylastperiod < 48:
  235. $stat_msg += '<BR><font color = #AB052A><b>Your period may have skipped a month.</b></font><BR>'
  236. elseif daystart - daylastperiod < 72:
  237. $stat_msg += '<BR><font color = #AB052A><b>It seems your period has skipped an another month.</b></font><BR>'
  238. else
  239. $stat_msg += '<BR><font color = #AB052A><b>You should consider the possibility of a pregnancy, since apparently you no longer have periods.</b></font><BR>'
  240. end
  241. end
  242. if StoryLine > 0 and SchoolAtestat = 0 and $holyday ! '': $stat_msg += '<BR><<$holyday>>' & $stat_msg += '<BR>'
  243. if birthday = day and birthmonth = month: $stat_msg += '<BR><b>Today is your birthday.</b>' & $stat_msg += '<BR>'
  244. !!if shame > 0:$stat_msg += '<BR><<$shame>>' & $stat_msg += '<BR>'
  245. $stat_msg += '<BR><b><<$manna>></b>'
  246. $stat_msg += '<BR>'
  247. if mentats_dose >= 1:$stat_msg += '<BR><font color = green>You feel sharp and focused.</font>'
  248. if bcream_used = 1:$stat_msg += '<BR><font color = #DB7093>Your breasts are feeling hot and tingly.</font>'
  249. if aphrodisiac_timer > 0:$stat_msg += '<BR><font color = #DB7093>You are feeling hot and every move causes your groin to tingle.</font>'
  250. if energy < 5:
  251. $stat_msg += '<BR><font color="red">You feel faint from hunger, if you don''t have something to eat very soon, you will pass out.</font>'
  252. elseif energy < 10:
  253. $stat_msg += '<BR><font color="red">You are starving, you really need to have something to eat.</font>'
  254. elseif energy < 20:
  255. $stat_msg += '<BR>You are very hungry and struggle to concentrate on anything other than food.'
  256. elseif energy < 30:
  257. $stat_msg += '<BR>You feel peckish and your thoughts sometimes drift towards food.'
  258. end
  259. if water < 5:
  260. $stat_msg += '<BR><font color="red">You feel light-headed, if you don''t have something to drink very soon, you will pass out.</font>'
  261. elseif water < 10:
  262. $stat_msg += '<BR><font color="red">You are dehydrated, you really need to have something to drink.</font>'
  263. elseif water < 20:
  264. $stat_msg += '<BR>You are thirsty and your dry throat is irritating and distracting you.'
  265. elseif water < 30:
  266. $stat_msg += '<BR>You feel a little thirsty and your mouth is a little dry.'
  267. end
  268. if son < 5:
  269. $stat_msg += '<BR><font color="red">You can''t keep your eyes open, if you don''t go to bed now, you will fall asleep right here.</font>'
  270. elseif son < 10:
  271. $stat_msg += '<BR><font color="red">You are exhausted, you really need to go to bed soon.</font>'
  272. elseif son < 20:
  273. $stat_msg += '<BR>You are tired and you are struggling to concentrate.'
  274. elseif son < 30:
  275. $stat_msg += '<BR>You feel a little tired.'
  276. end
  277. if opPRE = 0 :
  278. if tanga = 1 and clit_size >= 25:$stat_msg += '<BR><font color = #FF1493>Your panties keep rubbing against your clit and making you horny.</font>'
  279. if horny >= 50:
  280. if horny < 90 and tanga = 1:
  281. $stat_msg += '<BR><font color = #DB7093>You are a little nervous, feeling nice between your legs <a href="exec:view''images/picb/briefs1.jpg''">itchy</a> from arousal.</font>'
  282. elseif horny < 90 and tanga = 0:
  283. $stat_msg += '<BR><font color = #DB7093>You are a little nervous, feeling nice between your legs <a href="exec:view''images/picb/briefs1a.jpg''">itchy</a> from arousal.</font>'
  284. elseif tanga = 1:
  285. $stat_msg += '<BR><font color = #FF1493>You can''t stop thinking about sex, between your legs you are <a href="exec:view''images/picb/briefs2.jpg''">soaked</a> from your juices.</font>'
  286. else
  287. $stat_msg += '<BR><font color = #FF1493>You can''t stop thinking about sex, between your legs you are <a href="exec:view''images/picb/briefs2a.jpg''">soaked</a> from your juices.</font>'
  288. end
  289. end
  290. end
  291. $smoker = {
  292. siga -= 1
  293. smoker += 1
  294. smokeHour = hour
  295. smokeDay = day
  296. smokeminut = minut + 5
  297. smokerNeed = 0
  298. cumspclnt = 2
  299. gs 'cum_cleanup'
  300. fbreath = 0
  301. manna += 100
  302. wipo += 100
  303. if energy < 80:energy += 4
  304. gs '$menu_obnovit'
  305. }
  306. if PillToggle = 1 and tabletki > 0:
  307. Stabletki += tabletki
  308. tabletki = 0
  309. elseif PillToggle = 0 and Stabletki > 0:
  310. tabletki += Stabletki
  311. Stabletki = 0
  312. end
  313. if CondomToggle = 1 and prezik > 0:
  314. Sprezik += prezik
  315. prezik = 0
  316. elseif CondomToggle = 0 and Sprezik > 0:
  317. prezik += Sprezik
  318. Sprezik = 0
  319. end
  320. if $mud ! '':$stat_msg += '<BR><font color="green"><b><<$mud>></b></font>' & $stat_msg += '<BR>'
  321. if smoker >= 20:
  322. if smokerNeed > 0:
  323. if siga > 0:
  324. $stat_msg += '<BR><a href="exec:dynamic $smoker"><font color="red"><b>You want to smoke. You have <<siga>> cigarettes left.</b></font></a>'
  325. $stat_msg += '<BR>'
  326. else
  327. $stat_msg += '<BR><a href="exec:dynamic $smoker"><font color="red"><b>You want to smoke, but you have no cigarettes left.</b></font></a>'
  328. $stat_msg += '<BR>'
  329. end
  330. else
  331. if siga > 0:
  332. $stat_msg += '<BR><a href="exec:dynamic $smoker"><font color="blue"><b>You have <<siga>> cigarettes left.</b></font></a>'
  333. $stat_msg += '<BR>'
  334. else
  335. $stat_msg += '<BR><font color="blue"><b>You feel like you should get some cigarettes.</b></font>'
  336. $stat_msg += '<BR>'
  337. end
  338. end
  339. elseif siga > 0:
  340. $stat_msg += '<BR><a href="exec:dynamic $smoker"><font color = blue><b>You have <<siga>> cigarettes.</b></font></a>'
  341. $stat_msg += '<BR>'
  342. end
  343. if smokeHour = hour and smokeday = day and smokeminut >= minut:$stat_msg += '<BR><font color="green">You are smoking a cigarette.</font>'
  344. if sweat < 0 : sweat = 0
  345. if sweat > 69 : sweat = 69
  346. jump 'statDswt<<sweat/10>>'
  347. :statDswt0
  348. if arrsize('sparrvol') = 0 : $stat_msg += '<BR><b><font color="green">You are sparkling clean.</font></b>'
  349. jump 'statDswtEnd'
  350. :statDswt1
  351. jump 'statDswtEnd'
  352. :statDswt2
  353. $stat_msg += '<BR><font color="brown">You''re sweating.</font>'
  354. jump 'statDswtEnd'
  355. :statDswt3
  356. $stat_msg += '<BR><font color="red">You are a little smelly.</font>'
  357. jump 'statDswtEnd'
  358. :statDswt4
  359. $stat_msg += '<BR><font color="red">You stink.</font>'
  360. jump 'statDswtEnd'
  361. :statDswt5
  362. $stat_msg += '<BR><b><font color="red">You really stink.</font></b>'
  363. jump 'statDswtEnd'
  364. :statDswt6
  365. $stat_msg += '<BR><b><font color="red">You are dripping wet from sweat and smell like a gym sock.</font></b>'
  366. jump 'statDswtEnd'
  367. :statDswtEnd
  368. if dirtyclothes = 1:
  369. if sweat > 40:
  370. $stat_msg +='<br><font color = red>You from head to toe <a href="exec:view''images/qwest/gadukino/Swamp/dirtyclothes1.jpg''">smeared</a> in the mud.</font>'
  371. else
  372. $stat_msg +='<br><font color = red>Your <a href="exec:view''images/qwest/gadukino/Swamp/dirtyclothes2.jpg''">cloth</a> is dirty.</font>'
  373. end
  374. end
  375. !! MJ: Add a line before the next message.
  376. if sweat > 0: $stat_msg += '<BR>'
  377. if opPRE = 0 :
  378. $stat_msg += '<BR><a href="exec:dynamic $d_cycreport_choice"><<$cycreport_txt>></a>'
  379. end
  380. $stat_msg += '<BR>'
  381. if prezikmsg = 2:$stat_msg += '<BR><b><font color="red">You have run out of condoms.</font></b>' & $stat_msg += '<BR>'
  382. if opPRE = 0 :
  383. if implant_day > 0:
  384. implant_since = (((daystart+1) - implant_day) * 24) - (24 - implant_hour)
  385. if implant_since < 5:
  386. $stat_msg += '<BR><font color="pink">You feel a slight twinge in your abdomen.</font>'
  387. end
  388. elseif mesec > 0:
  389. $stat_msg += '<BR><font color="red">You are currently having your period. '
  390. if isprok = 0 and isprokp = 0:
  391. $stat_msg += '<b>You need to use your feminine hygiene products.</b>'
  392. elseif isprokp = 1 and tanga = 0:
  393. isprokp = 0
  394. $stat_msg += '<b>You need to wear panties to use a sanitary pad.</b>'
  395. end
  396. $stat_msg += '</font>'
  397. end
  398. end
  399. if lactate = 1:
  400. if lactatemv >= lactatemm-1:
  401. $stat_msg += '<BR><font color = black>Your breasts are so full they hurt and a little milk is constantly dribbling out.</font>'
  402. elseif lactatemv > lactatemm*9/10:
  403. $stat_msg += '<BR><font color = black>Your breasts are firm and full, and starting to hurt from all the milk they contain.</font>'
  404. elseif lactatemv > lactatemm*3/4:
  405. $stat_msg += '<BR><font color = black>Your breasts feel firm and heavy, full of milk.</font>'
  406. elseif lactatemv > lactatemm/2:
  407. $stat_msg += '<BR><font color = black>Your breasts are heavy, a cargo of milk inside.</font>'
  408. elseif lactatemv > lactatemm/4:
  409. $stat_msg += '<BR><font color = black>Your breasts feel a little heavy.</font>'
  410. elseif lactatemv > 0:
  411. $stat_msg += '<BR><font color = black>Your breasts tingle a little from the feeling of milk production.</font>'
  412. else
  413. $stat_msg += '<BR><font color = black>Your breasts feel soft and empty.</font>'
  414. end
  415. !! MJ: Add a line before the next message.
  416. $stat_msg += '<BR>'
  417. end
  418. if Enable_Hymenrestore = 1: vagina = 0
  419. if Enable_tightrestore = 1: anus = 0 & if vagina > 0:vagina = 1
  420. if Enable_clearwrite > 0: body_write = 0 & face_write = 0
  421. !{
  422. if Enable_clearcum > 0:
  423. killvar 'sparrvol[0]'
  424. end
  425. if Enable_fbreath > 0:
  426. cumspclnt = 2
  427. gs 'cum_cleanup'
  428. fbreath=1
  429. end
  430. }
  431. $clear_write = {
  432. body_write = 0
  433. face_write = 0
  434. minut += 10
  435. gs '$menu_obnovit'
  436. 'It takes you 10 minutes to thoroughly wash the obscene "painting" from your body.'
  437. }
  438. !!'<a href="exec:view''images/body/cumface.jpg''">лицо</a>'
  439. !!'<a href="exec:view''images/body/cumface.jpg''"><b><font color="red">Your face</font></b></a>'
  440. !!'<a href="exec:view''images/body/cumass.jpg''"><b><font color="red">Your ass</font></b></a>'
  441. if body_write > 0 or face_write > 0:
  442. if body_write > 1 and face_write = 0:
  443. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body is inscribed with derogatory graffiti.</font></b></a>'
  444. elseif body_write = 1 and face_write = 0:
  445. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body is an obscene sign.</font></b></a>'
  446. elseif body_write = 0 and face_write > 1:
  447. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your face is covered with writing obscene epithets.</font></b></a>'
  448. elseif body_write = 0 and face_write = 1:
  449. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>On your face humiliating label.</font></b></a>'
  450. else
  451. $stat_msg += '<BR><a href="exec:dynamic $clear_write"><b><font color = red>Your body and face painted with obscene graffiti.</font></b></a>'
  452. end
  453. end
  454. $cumdescribe = {
  455. idx = 0
  456. killvar 'temparray'
  457. strangecum = 0
  458. tempstrage = 2
  459. tempage = 2
  460. tempvol = 0
  461. idxmax = arrsize('sparrloc')-1
  462. :idxloop
  463. if sparrloc[idx] = i:
  464. if sparridt[idx] >= 0 and ((arrcomp('temparray',$sparrnam[idx]) = -1) or strcomp($sparrnam[idx],'.*\p{Lu}.*') = 0):
  465. $temparray[] = $sparrnam[idx]
  466. if sparridt[idx] = 0:somedude = 1
  467. if sparrage[idx] < cumres['new_thresh'] and tempage > 0:
  468. tempage = 0
  469. elseif sparrage[idx] < cumres['crusty_thresh'] and tempage > 1:
  470. tempage = 1
  471. else
  472. tempage = 2
  473. end
  474. elseif sparridt[idx] = -2:
  475. strangecum = 1
  476. if sparrage[idx] < cumres['new_thresh'] and tempstrage > 0:
  477. tempstrage = 0
  478. elseif sparrage[idx] < cumres['crusty_thresh'] and tempstrage > 1:
  479. tempstrage = 1
  480. else
  481. tempstrage = 2
  482. end
  483. end
  484. end
  485. if idx < idxmax: idx += 1 & jump 'idxloop'
  486. killvar 'idxmax'
  487. killvar 'idx'
  488. if arrsize('temparray') > 1:
  489. $cumres['name'] = 'Multiple men'
  490. elseif arrsize('temparray') = 1 and somedude = 1 and strcomp($temparray[0],'.*\p{Lu}.*') = 0:
  491. $cumres['name'] = 'Some '+$temparray[0]
  492. elseif arrsize('temparray') = 1:
  493. $cumres['name'] = $temparray[0]
  494. elseif arrsize('temparray') = 0 and strangecum = 1:
  495. $cumres['name'] = 'Something that looks like somebody'
  496. end
  497. if tempage = 0 or (tempstrage = 0 and strangecum = 1):
  498. $cumres['desc'] = 'fresh '
  499. elseif tempage = 1 or (tempstrage = 1 and strangecum = 1):
  500. $cumres['desc'] = ''
  501. else
  502. if sparrloc[cumres_idx] ! 0 and sparrloc[cumres_idx] ! 3:
  503. $cumres['desc'] = 'crusty '
  504. else
  505. $cumres['desc'] = 'stale '
  506. end
  507. end
  508. killvar 'tempage'
  509. killvar 'tempstrage'
  510. killvar 'strangecum'
  511. killvar 'temparray'
  512. killvar 'somedude'
  513. }
  514. if arrsize('sparrvol') > 0:
  515. !{index for use in dynamic}
  516. i = 0
  517. !{values for fresh and crusty, only updated where needed}
  518. cumres['new_thresh'] = 4
  519. cumres['crusty_thresh'] = 10
  520. cumres_idx = arrpos('sparrloc',i)
  521. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  522. dynamic $cumdescribe
  523. if vibratorIN = 1:
  524. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm fills your pussy, corked in by your vibrator.</font></b>'
  525. else
  526. $cumres['state'] = 'fills your '
  527. if sparrslc[cumres_idx] > 0:
  528. $cumres['state'] = 'slowly flows from your '
  529. spdirtyn = 1
  530. end
  531. if swallow >= 10:
  532. $stat_msg += '<BR><a href="exec:view''images/body/cumpussy.jpg''"><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 0"><b><font color="blue">sperm</font></b></a><b> <<$cumres[''state'']>>pussy.</a></font></b>'
  533. else
  534. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm <<$cumres[''state'']>><a href="exec:view''images/body/cumpussy.jpg''">pussy.</a></font></b>'
  535. end
  536. cumloc[0] = 1
  537. spdirty = 1
  538. end
  539. spdirtyi = 1
  540. end
  541. i = 1
  542. cumres['new_thresh'] = 1
  543. cumres['crusty_thresh'] = 5
  544. cumres_idx = arrpos('sparrloc',i)
  545. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  546. dynamic $cumdescribe
  547. if swallow >= 10 and sparrage[cumres_idx] < 5:
  548. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 1"><b><font color="blue">sperm</font></b></a><b> is smeared across your pussy lips.</font></b>'
  549. else
  550. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your pussy lips.</a></font></b>'
  551. end
  552. cumloc[1] = 1
  553. spdirty = 1
  554. spdirtyn = 1
  555. end
  556. i = 2
  557. cumres_idx = arrpos('sparrloc',i)
  558. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  559. dynamic $cumdescribe
  560. if swallow >= 10 and sparrage[cumres_idx] < 5:
  561. $stat_msg += '<BR><b><font color="red">You have <<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 2"><b><font color="blue">semen</font></b></a><b> stains on the crotch of your panties.</font></b>'
  562. else
  563. $stat_msg += '<BR><b><font color="red">You have <<$cumres[''name'']>>''s <<$cumres[''desc'']>>semen stains on the crotch of your panties.</a></font></b>'
  564. end
  565. cumloc[2] = 1
  566. spdirtyc = 1
  567. end
  568. i = 3
  569. cumres['new_thresh'] = 4
  570. cumres['crusty_thresh'] = 10
  571. cumres_idx = arrpos('sparrloc',i)
  572. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  573. dynamic $cumdescribe
  574. if analplugin = 1:
  575. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is stuffed in your ass, corked in by your anal plug.</font></b>'
  576. else
  577. $cumres['state'] = 'fills your '
  578. if sparrslc[cumres_idx] > 0:
  579. $cumres['state'] = 'slowly flows from your '
  580. spdirtyn = 1
  581. end
  582. if swallow >= 10:
  583. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 3"><b><font color="blue">sperm</font></b></a><b> <<$cumres[''state'']>><a href="exec:view''images/body/cumanal.jpg''">ass</a>.</font></b>'
  584. else
  585. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm <<$cumres[''state'']>><a href="exec:view''images/body/cumanal.jpg''">ass</a>.</font></b>'
  586. end
  587. end
  588. cumloc[3] = 1
  589. spdirty = 1
  590. spdirtyi = 1
  591. end
  592. i = 4
  593. cumres['new_thresh'] = 1
  594. cumres['crusty_thresh'] = 5
  595. cumres_idx = arrpos('sparrloc',i)
  596. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  597. dynamic $cumdescribe
  598. if swallow >= 10 and sparrage[cumres_idx] < 5:
  599. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 4"><b><font color="blue">sperm</font></b></a><b> is smeared across your <a href="exec:view''images/body/cumass.jpg''">ass</a>.</font></b>'
  600. else
  601. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your <a href="exec:view''images/body/cumass.jpg''">ass</a>.</a></font></b>'
  602. end
  603. cumloc[4] = 1
  604. spdirty = 1
  605. spdirtyn = 1
  606. end
  607. i = 5
  608. cumres_idx = arrpos('sparrloc',i)
  609. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  610. dynamic $cumdescribe
  611. if swallow >= 10 and sparrage[cumres_idx] < 5:
  612. $stat_msg += '<BR><b><font color="red">You have <<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 5"><b><font color="blue">semen</font></b></a><b> stains on the ass of your panties.</font></b>'
  613. else
  614. $stat_msg += '<BR><b><font color="red">You have <<$cumres[''name'']>>''s <<$cumres[''desc'']>>semen stains on the ass of your panties.</a></font></b>'
  615. end
  616. cumloc[5] = 1
  617. spdirtyc = 1
  618. end
  619. i = 6
  620. cumres_idx = arrpos('sparrloc',i)
  621. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  622. dynamic $cumdescribe
  623. if swallow >= 10 and sparrage[cumres_idx] < 5:
  624. $stat_msg += '<BR><b><font color="red">You have <<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 6"><b><font color="blue">semen</font></b></a><b> stains on the crotch of your <a href="exec:view''images/body/cumfrot.jpg''">clothes</a>.</font></b>'
  625. else
  626. $stat_msg += '<BR><b><font color="red">You have <<$cumres[''name'']>>''s <<$cumres[''desc'']>>semen stains on the crotch of your <a href="exec:view''images/body/cumfrot.jpg''">clothes</a>.</a></font></b>'
  627. end
  628. cumloc[6] = 1
  629. spdirtyc = 1
  630. end
  631. i = 7
  632. cumres_idx = arrpos('sparrloc',i)
  633. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  634. dynamic $cumdescribe
  635. if swallow >= 10 and sparrage[cumres_idx] < 5:
  636. $stat_msg += '<BR><b><font color="red">You have <<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 7"><b><font color="blue">semen</font></b></a><b> stains on your <a href="exec:view''images/body/cumfrot.jpg''">clothes</a>.</font></b>'
  637. else
  638. $stat_msg += '<BR><b><font color="red">You have <<$cumres[''name'']>>''s <<$cumres[''desc'']>>semen stains on your <a href="exec:view''images/body/cumfrot.jpg''">clothes</a>.</a></font></b>'
  639. end
  640. cumloc[7] = 1
  641. spdirtyc = 1
  642. end
  643. i = 8
  644. cumres_idx = arrpos('sparrloc',i)
  645. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  646. dynamic $cumdescribe
  647. if swallow >= 10 and sparrage[cumres_idx] < 5:
  648. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 8"><b><font color="blue">sperm</font></b></a><b> is smeared across your back.</font></b>'
  649. else
  650. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your back.</a></font></b>'
  651. end
  652. cumloc[8] = 1
  653. spdirty = 1
  654. spdirtyn = 1
  655. end
  656. i = 9
  657. cumres_idx = arrpos('sparrloc',i)
  658. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  659. dynamic $cumdescribe
  660. if swallow >= 10 and sparrage[cumres_idx] < 5:
  661. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 9"><b><font color="blue">sperm</font></b></a><b> is smeared across your legs.</font></b>'
  662. else
  663. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your legs.</a></font></b>'
  664. end
  665. cumloc[9] = 1
  666. spdirty = 1
  667. spdirtyn = 1
  668. end
  669. i = 10
  670. cumres_idx = arrpos('sparrloc',i)
  671. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  672. dynamic $cumdescribe
  673. if swallow >= 10 and sparrage[cumres_idx] < 5:
  674. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 10"><b><font color="blue">sperm</font></b></a><b> is smeared across your arms.</font></b>'
  675. else
  676. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your arms.</a></font></b>'
  677. end
  678. cumloc[10] = 1
  679. spdirty = 1
  680. spdirtyn = 1
  681. end
  682. i = 11
  683. cumres_idx = arrpos('sparrloc',i)
  684. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  685. dynamic $cumdescribe
  686. if swallow >= 10 and sparrage[cumres_idx] < 5:
  687. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 11"><b><font color="blue">sperm</font></b></a><b> is smeared across your <a href="exec:view''images/body/cumface.jpg''">face</a>.</font></b>'
  688. else
  689. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your <a href="exec:view''images/body/cumface.jpg''">face</a>.</a></font></b>'
  690. end
  691. cumloc[11] = 1
  692. spdirty = 1
  693. spdirtyn = 1
  694. spdirtyv = 1
  695. end
  696. i = 12
  697. cumres_idx = arrpos('sparrloc',i)
  698. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  699. dynamic $cumdescribe
  700. $stat_msg += '<BR><b><font color="red">Your mouth smells from <<$cumres[''name'']>>''s sperm.</a></font></b>'
  701. cumloc[12] = 1
  702. spdirty = 1
  703. spdirtyb = 1
  704. fbreath = 0
  705. end
  706. i = 13
  707. cumres_idx = arrpos('sparrloc',i)
  708. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  709. dynamic $cumdescribe
  710. if swallow >= 10 and sparrage[cumres_idx] < 5:
  711. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 13"><b><font color="blue">sperm</font></b></a><b> is smeared across your hands.</font></b>'
  712. else
  713. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your hands.</a></font></b>'
  714. end
  715. cumloc[13] = 1
  716. spdirty = 1
  717. spdirtyn = 1
  718. spdirtyv = 1
  719. spdirtyf = 1
  720. end
  721. i = 14
  722. cumres_idx = arrpos('sparrloc',i)
  723. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  724. dynamic $cumdescribe
  725. if swallow >= 10 and sparrage[cumres_idx] < 5:
  726. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 14"><b><font color="blue">sperm</font></b></a><b> is smeared across your <a href="exec:view''images/body/cumbelly.jpg''">stomach</a>.</font></b>'
  727. else
  728. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your <a href="exec:view''images/body/cumbelly.jpg''">stomach.</a></font></b>'
  729. end
  730. cumloc[14] = 1
  731. spdirty = 1
  732. spdirtyn = 1
  733. end
  734. i = 15
  735. cumres_idx = arrpos('sparrloc',i)
  736. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  737. dynamic $cumdescribe
  738. if swallow >= 10 and sparrage[cumres_idx] < 5:
  739. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 15"><b><font color="blue">sperm</font></b></a><b> is smeared across your breasts.</font></b>'
  740. else
  741. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared across your breasts.</a></font></b>'
  742. end
  743. cumloc[15] = 1
  744. spdirty = 1
  745. spdirtyn = 1
  746. end
  747. i = 16
  748. cumres_idx = arrpos('sparrloc',i)
  749. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  750. dynamic $cumdescribe
  751. if swallow >= 10 and sparrage[cumres_idx] < 5:
  752. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>><a href="exec:gs ''cum_manage'', ''cumeater'', 16"><b><font color="blue">sperm</font></b></a><b> is smeared in your hair.</font></b>'
  753. else
  754. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <<$cumres[''desc'']>>sperm is smeared in your hair.</a></font></b>'
  755. end
  756. cumloc[16] = 1
  757. spdirty = 1
  758. spdirtyn = 1
  759. spdirtyv = 1
  760. end
  761. i = 17
  762. cumres_idx = arrpos('sparrloc',i)
  763. if cumres_idx >= 0 and sparrvol[cumres_idx] > 0:
  764. dynamic $cumdescribe
  765. if sparrage[cumres_idx] < 1:
  766. $cumtemp = 'freshly buried'
  767. elseif sparrage[cumres_idx] < 13:
  768. $cumtemp = 'buried'
  769. elseif sparrage[cumres_idx] <= 48:
  770. $cumtemp = 'marinating'
  771. else
  772. $cumtemp = 'rotting'
  773. end
  774. if cumcondslip_deep > (vagina / 2):
  775. $cumtemp += ' deep'
  776. end
  777. if cumcondslip_aware > 0:
  778. $stat_msg += '<BR><b><font color="red"><<$cumres[''name'']>>''s <a href="exec:gs ''cum_cleanup'', ''cumcondslip''"><font color="blue">spent condom</font></a> full of sperm is <<$cumtemp>> in your vagina.</font></b>'
  779. end
  780. cumloc[17] = 1
  781. end
  782. end
  783. !{should kill all temp values}
  784. cumres_idx = 0
  785. cumfrot = 0
  786. cumpussy = 0
  787. cumbelly = 0
  788. cumass = 0
  789. cumlip = 0
  790. cumface = 0
  791. cumanus = 0
  792. if $clothingworntype = 'nude' and lactatemess > 0:
  793. if lactatemess < 3:
  794. $stat_msg += '<BR><font color = black>You have a little milk residue around your nipples.</font>'
  795. elseif lactatemess < 7:
  796. $stat_msg += '<BR><font color = black>You have a lot of milk residue around your nipples.</font>'
  797. else
  798. $stat_msg += '<BR><font color = black>Your breasts are drenched with milk residue.</font>'
  799. end
  800. elseif lactatemess > 0:
  801. if lactatemess < 3:
  802. $stat_msg += '<BR><font color = black>You have tiny wet spots on your clothes above your nipples.</font>'
  803. elseif lactatemess < 7:
  804. $stat_msg += '<BR><font color = black>Milk has soaked through your clothes and made visible circles on your breasts.</font>'
  805. else
  806. $stat_msg += '<BR><font color = black>Your shirt is drenched with milk from your breasts.</font>'
  807. end
  808. end
  809. if Gerpes >= 10:
  810. $stat_msg += '<BR><b><font color="red">On your pussy sores have appeared. This is genital herpes.</font></b>'
  811. elseif Gerpes >= 5:
  812. $stat_msg += '<BR><b><font color="red">Your pussy is flushed and highly itchy. This is genital herpes.</font></b>'
  813. elseif Gerpes >= 3:
  814. $stat_msg += '<BR><b><font color="red">On your lips sores. All signs of genital herpes.</font></b>'
  815. end
  816. if Gerpes >= 20:$stat_msg += '<BR> <b><font color="red">The sores also cover your ass.</font></b>'
  817. if Sifilis >= 50:
  818. $stat_msg += '<BR><b><font color="red">Syphilitic rashes cover your whole body.</font></b>'
  819. elseif Sifilis >= 21:
  820. $stat_msg += '<BR><b><font color="red">You have a single big, hard sore on the lip.</font></b>'
  821. end
  822. if Triper > 2:$stat_msg += '<BR><b><font color="red">From your vagina a white discharge comes out strong and stinging when urinating. Also from your vagina there''s a hard and nasty smell.</font></b>'
  823. if Kandidoz > 30:$stat_msg += '<BR><b><font color="red">You have thrush.</font></b>'
  824. if SLomka > 0:$stat_msg += '<BR><b><font color="red">You are very weak and hurt to the bone. You''re in withdrawal.</font></b>'
  825. if narkday ! daystart and narkoman = 1:$stat_msg += '<BR><b><font color="red">You are very weak and hurt to the bone. Urgently need pale lady.</font></b>'
  826. if fingal > 0:$stat_msg += '<BR><b><font color="red">You have a black eye.</font></b>'
  827. ! WD: Bimbo look
  828. $stat_msg += '<BR><<$bimbostatus>>'
  829. if tanga = 1 and $clothingworntype = 'nude':
  830. $stat_msg += '<BR><b><font color = red>You are stripped down to your panties and your boobs sway invitingly as you walk</font></b>'
  831. elseif tanga= 1 and PCloBimbo = 1:
  832. $stat_msg += '<BR><b><font color = #FF1493>You are dressed as a bimbo</font></b>'
  833. elseif tanga = 0:
  834. if $clothingworntype = 'naughty' and CloQuality = 2:
  835. $stat_msg += '<BR><b><font color="red">you are not wearing panties, but you are dressed as a hooker, so that''s hardly surprising.</font></b>'
  836. elseif PCloBimbo = 1 or bimbolevel > 0 and PCloSkirt > 3:
  837. $stat_msg += '<BR><b><font color = #FF1493>You like, totally forgot to put on any panties. You are such a bimbo.</font></b>'
  838. elseif PCloSkirt > 3:
  839. $stat_msg += '<BR><b><font color="red">Your face is flushed with shame, you are not wearing panties and your naked ass flashes from under your short skirt.</font></b>'
  840. elseif opPRE = 0 and $clothingworntype ! 'nude':
  841. $stat_msg += '<BR><b><font color="red">You are not wearing panties.</font></b>'
  842. elseif towel = 1:
  843. $stat_msg += '<BR><b><font color = red>Your naked body is covered only by a short towel.</font></b>'
  844. elseif $clothingworntype = 'nude' and exhibi < 1:
  845. $stat_msg += '<BR><b><font color = red>You are completely naked, and inside, everything trembles.</font></b>'
  846. elseif $clothingworntype = 'nude' and exhibi >= 1:
  847. $stat_msg += '<BR><b><font color = #FF1493>You are completely naked. It''s exciting and you feel tingly inside.</font></b>'
  848. end
  849. end
  850. if mosol >= 50:
  851. $stat_msg += '<BR><b><font color="red">Your pussy hurts and each step causes more pain, it''s crimson and visibly scuffed from walking without underwear.</font></b>'
  852. elseif mosol >= 30:
  853. $stat_msg += '<BR><b><font color="red">Your pussy is flushed and itchy, it seems to be from rubbing against your clothing.</font></b>'
  854. end
  855. if analplugIN = 1:$stat_msg += '<BR><b><font color="red">You have a butt plug inserted in your ass.</font></b>'
  856. if vibratorin = 1:$stat_msg += '<BR><b><font color="red">You have a vibrator inserted in your vagina.</font></b>'
  857. if young_shop_work = 1:
  858. if hour = 15 and minut <= 5 and week < 6 and inWorkYoungShop = 0:
  859. 'You are late for work at Keys Pussy.'
  860. elseif hour = 15 and week < 6 and inWorkYoungShop = 0 and misscheck ! daystart:
  861. misscheck = daystart
  862. young_shop_miss += 1
  863. $stat_msg += '<BR><b><font color="red">You missed work.</font></b>'
  864. elseif (hour = 14 or hour = 13) and week < 6:
  865. $stat_msg += '<BR><b><font color="red">By 15:00 you have to be at work in the shop Keys Pussy.</font></b>'
  866. end
  867. end
  868. if workrin = 1:
  869. if week = 2 or week = 4 or week = 6:
  870. if hour = 7:$stat_msg += '<BR><b><font color="red">At 8 c''clock you start work on the market.</font></b>'
  871. if hour = 8:$stat_msg += '<BR><b><font color="red">You need to work on the market now.</font></b>'
  872. end
  873. end
  874. if frost > 0:
  875. if frost <= 5:
  876. $stat_msg += '<BR><b><font>You are a little chilly.</font></b>'
  877. elseif frost < 11:
  878. $stat_msg += '<BR><b><font color="red">You are cold.</font></b>'
  879. else
  880. $stat_msg += '<BR><b><font color="red">You are freezing.</font></b>'
  881. end
  882. end
  883. if sick > 0:
  884. if sick = 1:
  885. $stat_msg += '<BR><b><font color="red">This is not good, a tickle in the throat and a little runny nose.</font></b>'
  886. elseif sick < 24:
  887. $stat_msg += '<BR><b><font color="red">You have chills. You nose is running and throat is raw, you cough and sneeze - it looks like you got a cold.</font></b>'
  888. elseif sick < 48:
  889. $stat_msg += '<BR><b><font color="red">You have a fever. Your nose is clogged, it hurts to swallow - throat aches. You continually cough and sneeze - it looks like your cold is pretty bad.</font></b>'
  890. elseif sick < 72:
  891. $stat_msg += '<BR><b><font color="red">You have a high fever. You have a stuffy nose, sore head and throat, your coughing badly - it looks like you got a strong cold. Maybe it''s the flu.</font></b>'
  892. else
  893. $stat_msg += '<BR><b><font color="red">You toss in the heat. You have a stuffy nose, headache and ache to the bone. Your throat is inflamed and very sore. You think you''re going to cough up a lung - it looks like you are seriously ill, or maybe it''s just a sore throat.</font></b>'
  894. end
  895. end
  896. if hypnoAddict > 0:
  897. if hypnoWithdrawal = 1:
  898. if missCum >= timeTresh:
  899. $stat_msg += '<BR><b><font color="red">You really miss the feeling of sperm in your body, you are strangely craving it. You should talk to your therapist about it.</font></b>'
  900. else
  901. $stat_msg += '<BR><b><font color="red">You feel like talking to your therapist. You miss your sessions.</font></b>'
  902. end
  903. elseif hypnoWithdrawal = 2:
  904. if missCum >= timeTresh:
  905. $stat_msg += '<BR><b><font color="red">You want some sperm inside of you NOW! You have to talk to your therapist, immediately.</font></b>'
  906. else
  907. $stat_msg += '<BR><b><font color="red">You need to talk to your therapist. You feel unbalanced without your sessions.</font></b>'
  908. end
  909. else
  910. if missCum >= timeTresh:$stat_msg += '<BR><b><font color="magenta">You miss the feeling of sperm in your body and you feel moody.</font></b>'
  911. end
  912. end
  913. if $mudnerd ! '':$stat_msg += '<BR><<$mudnerd>>'
  914. if housr = 1:
  915. $streetev_home = 'your apartment'
  916. elseif tanwork = 1:
  917. $streetev_home = 'Tanya''s apartment'
  918. elseif student > 0:
  919. $streetev_home = 'your dorm'
  920. else
  921. $streetev_home = 'the train station'
  922. end
  923. if hour < meethour and svidanieA = 1:$stat_msg += '<BR><<$boyA>> will be waiting for you near <<$streetev_home>> at <<meethour>>:00.'
  924. if hour = meethour and svidanieA = 1:$stat_msg += '<BR><b><font color="red"><<$boyA>> is waiting for you by <<$streetev_home>>.</font></b>'
  925. if meetday < daystart and svidanieA = 1:bfA -= 10 & svidanieA = 0
  926. if StrongNarkota > 20:$stat_msg += '<BR><b><font color="red">You are stoned.</font></b>'
  927. if alko > 0:
  928. if alko < 3:$stat_msg += '<BR><b><font color="red">You''re a little dizzy.</font></b>'
  929. if alko >= 3 and alko < 6:$stat_msg += '<BR><b><font color="red">You''re drunk.</font></b>'
  930. if alko >= 6:$stat_msg += '<BR><b><font color="red">You''re wasted.</font></b>'
  931. end
  932. if day = 31 and month = 12 and (year - year_start) < 2 and hour >= 5 and hour <= 14 and StoryLine = 1:$stat_msg += '<BR>At 14:00 your New Year''s party will start.'
  933. if StoryLine = 1 and sisboyday + 1 = daystart and hour < 19 and (sisboyQW = 3 or sisboyQW = 5 or sisboyQW = 7 or (sisboyQW = 9 and sisboytrioQW ! 1)):$stat_msg += '<BR>' & $stat_msg += '<BR>You promised your sister not to go into your room at 18:00.'
  934. 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.'
  935. if week = 6 and hour > 9 and detention_set = 1:$stat_msg += '<BR><b>You have a detention this morning and must be at school between 8 and 9.</b>'
  936. if model > 0 and modelmon = month:
  937. $stat_msg += '<BR><b>You worked as a model this month.</b>'
  938. elseif model > 0 and modelmon ! month:
  939. $stat_msg += '<BR><b>You can work as a model this month.</b>'
  940. end
  941. if pornstack > 0:
  942. aa = 0
  943. :pfilmtime
  944. if aa < 200 and pfilmday[aa] = 0: aa += 1 & jump 'pfilmtime'
  945. end
  946. if pornstack > 0 and pfilmday[0] = 0:
  947. if pfilmday[1] = 0:
  948. $stat_msg += '<br><b>You will star in another porno in <<aa>> days.</b>'
  949. else
  950. $stat_msg += '<br><b>You have a porno shoot scheduled tomorrow.</b>'
  951. end
  952. end
  953. if pfilmday[0] > 0:
  954. if pornnow = 1:
  955. $stat_msg += '<br><b>You are at a porn shooting.</b>'
  956. else
  957. if hour < 11: $stat_msg += '<br><b>You are expected in the porno studio at 10:00.</b>'
  958. if hour >= 11 and hour < 13: $stat_msg += '<br><b>You should be at the porno studio, shooting!</b>'
  959. if hour >= 13: $stat_msg += '<br><b>You missed a scheduled porno shoot!</b>'
  960. end
  961. end
  962. if pornmiss = 1: $stat_msg += '<br><b>You missed a scheduled porno shoot!</b>'
  963. if prodcosttrue > 0: $stat_msg += '<br><b>You owe to the porn studio <<prodcost>>₽</b>'
  964. if firstkasting > 0 and pfilmNO < 1 and pornstack < 10: $stat_msg += '<br><b>You can contract to <<10-pornstack>> porno movie.</b>'
  965. if hour < 22 and week >= 2 and week <= 4 and workKafe = 1:$stat_msg += '<BR><b><font color="red">Today you have a shift in cafe starting at 11:00.</font></b>'
  966. if hour < 17 and week < 5 and workSec >= 1 or hour < 17 and week < 5 and PersSecWork = 1:$stat_msg += '<BR><b><font color="red">Today you have a shift as a secretary from 9:00 to 17:00</font></b>'
  967. 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>'
  968. 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>'
  969. 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 clinic. Your shift starts at 8:00.</font></b>'
  970. 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>'
  971. if leonidVisit = 1: $stat_msg += '<br><b>You have to serve Leonid at 20:00 in his Pavlovsk office!</b>'
  972. dynamic $brotherSexCount
  973. !!zero checks marriage
  974. proverka1 = 0
  975. proverka2 = 0
  976. proverka3 = 0
  977. proverka4 = 0
  978. proverka5 = 0
  979. ! WD: Code for updating from old clothing system pre 0.5.0
  980. !!clothing converter, for old saves. Not complete listing.
  981. if remdrop = 0:
  982. remdrop = 1
  983. if jeans[1] = 1:cheap[15] = 1 & cheapH[15] = jeansH[1] & cheapB[15] = jeansB[1] & jeans[1] = 0
  984. if jeans[205] = 1:average[65] = 1 & averageH[65] = jeansH[205] & averageB[65] = jeansB[205] & jeans[205] = 0
  985. if jeans[202] = 1:average[64] = 1 & averageH[64] = jeansH[202] & averageB[64] = jeansB[202] & jeans[202] = 0
  986. if jeans[2] = 1:average[62] = 1 & averageH[62] = jeansH[2] & averageB[62] = jeansB[2] & jeans[2] = 0
  987. if jeans[222] = 1:average[75] = 1 & averageH[75] = jeansH[222] & averageB[75] = jeansB[222] & jeans[222] = 0
  988. if jeans[223] = 1:average[76] = 1 & averageH[76] = jeansH[223] & averageB[76] = jeansB[223] & jeans[223] = 0
  989. if jeans[224] = 1:average[78] = 1 & averageH[78] = jeansH[224] & averageB[78] = jeansB[224] & jeans[224] = 0
  990. if jeans[232] = 1:average[79] = 1 & averageH[79] = jeansH[232] & averageB[79] = jeansB[232] & jeans[232] = 0
  991. if jeans[233] = 1:average[80] = 1 & averageH[80] = jeansH[233] & averageB[80] = jeansB[233] & jeans[233] = 0
  992. if jeans[267] = 1:expensive[3] = 1 & expensiveH[3] = jeansH[267] & expensiveB[3] = jeansB[267] & jeans[267] = 0
  993. if jeans[263] = 1:expensive[18] = 1 & expensiveH[18] = jeansH[263] & expensiveB[18] = jeansB[263] & jeans[263] = 0
  994. if jeans[234] = 1:expensive[71] = 1 & expensiveH[71] = jeansH[234] & expensiveB[71] = jeansB[234] & jeans[234] = 0
  995. if jeans[231] = 1:expensive[124] = 1 & expensiveH[124] = jeansH[231] & expensiveB[124] = jeansB[231] & jeans[231] = 0
  996. if yoga[1] = 1:exercise[1] = 1 & exerciseH[1] = yogaH[1] & yoga[1] = 0
  997. if yoga[2] = 1:exercise[2] = 1 & exerciseH[2] = yogaH[2] & yoga[2] = 0
  998. if yoga[4] = 1:exercise[4] = 1 & exerciseH[4] = yogaH[4] & yoga[4] = 0
  999. if yoga[5] = 1:exercise[5] = 1 & exerciseH[5] = yogaH[5] & yoga[5] = 0
  1000. if yoga[6] = 1:exercise[6] = 1 & exerciseH[6] = yogaH[6] & yoga[6] = 0
  1001. if yoga[7] = 1:exercise[7] = 1 & exerciseH[7] = yogaH[7] & yoga[7] = 0
  1002. if yoga[8] = 1:exercise[8] = 1 & exerciseH[8] = yogaH[8] & yoga[8] = 0
  1003. if yoga[9] = 1:exercise[9] = 1 & exerciseH[9] = yogaH[9] & yoga[9] = 0
  1004. if yoga[10] = 1:exercise[10] = 1 & exerciseH[10] = yogaH[10] & yoga[10] = 0
  1005. if yoga[11] = 1:exercise[11] = 1 & exerciseH[11] = yogaH[11] & yoga[11] = 0
  1006. if yoga[12] = 1:exercise[12] = 1 & exerciseH[12] = yogaH[12] & yoga[12] = 0
  1007. if yoga[13] = 1:exercise[13] = 1 & exerciseH[13] = yogaH[13] & yoga[13] = 0
  1008. if yoga[14] = 1:exercise[14] = 1 & exerciseH[14] = yogaH[14] & yoga[14] = 0
  1009. if yoga[15] = 1:exercise[15] = 1 & exerciseH[15] = yogaH[15] & yoga[15] = 0
  1010. if yoga[16] = 1:exercise[16] = 1 & exerciseH[16] = yogaH[16] & yoga[16] = 0
  1011. if yoga[17] = 1:exercise[17] = 1 & exerciseH[17] = yogaH[17] & yoga[17] = 0
  1012. if yoga[18] = 1:exercise[18] = 1 & exerciseH[18] = yogaH[18] & yoga[18] = 0
  1013. end
  1014. if boletus + bilberry > 0:
  1015. if boletus + bilberry >= 10:
  1016. $stat_msg +='<br><b><font color = Olive>You have a full basket.</b></font> '
  1017. else
  1018. $stat_msg +='<br><b>In Your basket</b>:'
  1019. end
  1020. if boletus > 0:$stat_msg +='mushrooms: <b><<boletus>></b> kg.'
  1021. if bilberry > 0:$stat_msg +='berries: <b><<bilberry>></b> kg.'
  1022. end
  1023. if Enable_statfsize>0:$stat_msg += '<BR></font>' & !disable this, all texts comes from pl will have the same font size, like[time]
  1024. if Enable_faceturn = 1: view FUNC('$face_image')
  1025. if Enable_Android = 0:
  1026. pl '<<$stat_msg>>'
  1027. else
  1028. '<<$stat_android>>'
  1029. $stat_msg = 'Android mode, <a href="exec:gs ''$menu_obnovit''">Refresh</a><<$stat_msg>>'
  1030. end
  1031. --- stat_display ---------------------------------