stat_display 47 KB

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