din_van.qsrc 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  1. # din_van
  2. !2021/04/26
  3. !! Dynamic code has been translated to static code for performance and savegame size reasons.
  4. !! The dynamic variables still exist for compatibility reasons.
  5. !! Whenever possible, don''t use dynamic code (use "gs 'din_van', 'xxx'" instead of "dynamic $xxx").
  6. !!pcs_leghair = leg hair 0 - 3 for smooth <= 6 for stubble <= 9 for light after that hairy
  7. !!pcs_pubes = pubes 0 - 3 for smooth <= 10 for stubble <= 20 for light hair after that its hairy
  8. !!pubestyle = the style in which you have determined to shave your pubic hair
  9. !!shave_length = the length that your pubic hair will be shortened to after shaving/trimming
  10. !!shave_trigger = the length that your pubic hair needs to be to shave/trim it
  11. !!mc_inventory['razor'] = razor
  12. !!$brit = shaving dynamic
  13. razors_to_use['all'] = min(3, max(1, (pcs_leghair*4 + max(0, pcs_pubes-shave_length))/20))
  14. razors_to_use['pussy'] = min(2, max(1, (max(0, pcs_pubes-shave_length))/20))
  15. razors_to_use['legs'] = min(3, max(1, (pcs_leghair*4)/20))
  16. $showerdin = "gs 'din_van', 'showerdin'"
  17. if $ARGS[0] = 'showerdin':
  18. menu_off = 1
  19. if hypnoAddict = 0:
  20. cumspclnt = 1
  21. else
  22. cumspclnt = 18
  23. end
  24. gs 'cum_cleanup'
  25. body_write = 0
  26. face_write = 0
  27. pcs_hairbsh = 0
  28. pcs_makeup = 1
  29. if frost > 0:frost = 0
  30. if mc_inventory['shampoo'] < 0: mc_inventory['shampoo'] = 0
  31. lactation['lactmess'] = 0
  32. if pcs_sweat > 10: pcs_sweat = 10 + rand(0,4)
  33. if noshampoo = 0:
  34. mc_inventory['shampoo'] -= 1
  35. else
  36. killvar 'noshampoo'
  37. end
  38. gs 'body', 'SkinGain', 'CleanSelf'
  39. if false_lashes >= 1:
  40. if rand(0,4) <= 2:
  41. 'You''re careful enough that your false lashes make it through relatively unscathed.'
  42. else
  43. 'Unfortunately, your false lashes don''t make it through the shower.'
  44. false_lashes = 0
  45. pcs_lashes = pcs_naturallashes
  46. gs 'AppearanceSystem', 'UpdateBaseAppearance'
  47. end
  48. end
  49. end
  50. $bteeth = "gs 'din_van', 'bteeth'"
  51. if $ARGS[0] = 'bteeth':
  52. if pcs_breath ! 1 or cumloc[12] = 1:
  53. act 'Brush your teeth (0:03)':
  54. menu_off = 1
  55. *clr & cla
  56. minut += 3
  57. cumspclnt = 2
  58. gs 'cum_cleanup'
  59. pcs_breath = 1
  60. teeth['brushed'] +=1
  61. if $clothingworntype = 'nude' and $braworntype = 'none' and $pantyworntype = 'none':
  62. '<center><video autoplay loop src="images/shared/home/bathroom/brushteeth.mp4"></center>'
  63. play 'sound/brushteeth.mp3',100
  64. else
  65. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/brushteeth.jpg"></center>'
  66. end
  67. *nl
  68. 'You brush your teeth and now they are clean and minty fresh.'
  69. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  70. end
  71. end
  72. end
  73. $dryOff = "gs 'din_van', 'dryOff'"
  74. if $ARGS[0] = 'dryOff':
  75. act 'Get out and dry off': mirror_steam = hour & gt $loc, $loc_arg
  76. end
  77. $shower = "gs 'din_van', 'shower'"
  78. if $ARGS[0] = 'shower':
  79. act 'Take a shower (0:15)':
  80. menu_off = 1
  81. *clr & cla
  82. minut += 15
  83. if $loc = 'vanrPar' or $loc = 'tanvanr' or $loc = 'albinahome' or $loc = 'LariskaHome' or hotelmc_inventory['shampoo'] = 1: noshampoo = 1
  84. noshampoo_tmp = noshampoo
  85. gs 'din_van', 'showerdin'
  86. '<center><video autoplay loop src="images/shared/home/bathroom/dush.mp4"></center>'
  87. *nl
  88. 'You undress and turn on the water in the shower. When it hits the right temperature, you step into the shower and let the warm water rain down on you.'
  89. if daystart - daystart_start < 9 and $start_type[1] = 'tg':
  90. pcs_horny += rand(6,10)
  91. 'It''s really arousing to see your new body with all its smooth curves, breasts with large nipples, wide hips and smooth legs. You begin to lather your body, noticing how soft and tender it feels. Once you''re sure you haven''t missed a single spot, you begin to wash yourself off, continuing to experience new and strange sensations.'
  92. elseif daystart - daystart_start < 29 and $start_type[1] = 'tg':
  93. pcs_horny += rand(2,6)
  94. 'You''ve already gotten used to your feminine body and its softness doesn''t surprise you very much anymore, but you still let your hands wander a bit over your soft curves before you begin to wash yourself in earnest.'
  95. else
  96. pcs_horny += rand(0,2)
  97. ''+iif(noshampoo_tmp = 1, 'It''s not your shampoo, so you use a little more than you normally would; with a tinge of guilt you ', 'Using your own shampoo, you carefully ')+'lather yourself up, trying not to miss any spots, and then wash off.'
  98. end
  99. if mc_inventory['shampoo'] = 0 and noshampoo_tmp = 1:
  100. 'When you get a chance, you should stop by the supermarket and buy some shampoo.'
  101. elseif mc_inventory['shampoo'] <= 5:
  102. 'You are getting low on shampoo, with only <<mc_inventory[''shampoo'']>> remaining. When you get a chance, you should stop by the supermarket and buy some more.'
  103. end
  104. if hypnoAddict > 0:'You have no reason to, but you carefully avoid cleaning out your pussy and ass.'
  105. if deodorant_on = 1: gs 'sweat', 'remove_deo' & 'Your deodorant gets washed away in the shower.'
  106. if bodyVars['weight_warning'] > 0:
  107. if bodyVars['weight_warning'] = 1: $weightwarn = 'losing'
  108. if bodyVars['weight_warning'] = 2: $weightwarn = 'gaining'
  109. '<font color="red"><b>You seem to be <<$weightwarn>> weight.</b></font>'
  110. killvar '$weightwarn' & bodyVars['weight_warning'] = 0
  111. end
  112. if normbuffpick = 1:
  113. *nl
  114. '<b>You notice that your muscles are starting to show through your skin.</b>'
  115. act 'Examine yourself closer while drying off and getting dressed...': gt 'din_van', 'buffpick'
  116. end
  117. if lactation['active'] > 0 and pain['nipples'] < 60 and lactation['pc_aware'] <= 0:
  118. if pcs_usedbreastpumponherself > 0 and pcs_massagedherbreasts <= 0:
  119. 'As you clean your breasts, something catches your eye. White drops come from your nipples. It is milk.<br>Using the breast pump regularly probably made you lactate!'
  120. lactation['induced'] = 1
  121. elseif pcs_usedbreastpumponherself <= 0 and pcs_massagedherbreasts > 0:
  122. 'As you clean your breasts, something catches your eye. White drops come from your nipples. It is milk. Regularly massaging your breasts probably made you lactate!<br>'
  123. lactation['induced'] = 1
  124. elseif pcs_usedbreastpumponherself > 0 and pcs_massagedherbreasts > 0:
  125. 'As you clean your breasts, something catches your eye. White drops come from your nipples. It is milk. All that pumping and massaging your breasts probably caused you to lactate!<br>'
  126. lactation['induced'] = 1
  127. else
  128. 'As you clean your breasts, something catches your eye. White drops come from your nipples. You find, to your surprise, that it is milk. You have started lactating!<br>'
  129. if thinkpreg = 1 or knowpreg = 1:
  130. 'This is probably happening because you are pregnant.'
  131. else
  132. 'You should have this checked out by a doctor. You could be pregnant.'
  133. end
  134. lactation['induced'] = 0
  135. end
  136. pcs_usedbreastpumponherself = 0
  137. pcs_massagedherbreasts = 0
  138. lactation['pc_aware'] = 1
  139. end
  140. gs 'din_van', 'dryOff'
  141. if rapeday = daystart and rape_shower ! daystart:
  142. act'Cry (react to rape)':
  143. cla & *clr
  144. rape_shower = daystart
  145. minut += rand(10,40)
  146. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/cry.jpg"></center>'
  147. 'The last of the suds run off of you, but you can still <i>feel it</i>.'
  148. *nl
  149. 'Your rapist''s cock <i>inside</i> you.'
  150. *nl
  151. 'His cum <i>leaking</i> out of you.'
  152. *nl
  153. 'You grab the soap again and scrub yourself again, but it still feels like something is there, coating your skin. You scrub and scrub and scrub but it just won''t go away until you finally cry out, throwing it into the corner. Tremors begin coursing through your body and you slowly sink down onto the shower floor, where you remain, sobbing while the water continues raining down on you.'
  154. gs 'din_van', 'dryOff'
  155. end
  156. elseif pcs_horny >= 40:
  157. act 'Use the showerhead on your pussy':
  158. menu_off = 1
  159. *clr & cla
  160. if rand(0, 5) = 0 and $locM = 'uni_dorm':gt 'vann', 'v4'
  161. '<center><video autoplay loop src="images/shared/home/bathroom/wash2.mp4"></center>'
  162. *nl
  163. 'You place the showerhead onto your pussy and a powerful jet of warm water begins to caress you.'
  164. if pcs_inhib < 30:inhib_exp += rand(1,3)
  165. pcs_mood += 15
  166. $orgasm_or = 'no'
  167. gs 'arousal', 'clit_vibe', -10, 'masturbate'
  168. $orgasm_or = 'no'
  169. gs 'arousal', 'clit_vibe', -10, 'masturbate'
  170. $orgasm_or = 'yes'
  171. gs 'arousal', 'clit_vibe', 10, 'masturbate'
  172. gs 'arousal', 'end'
  173. if hypnoAddict ! 0:
  174. 'You unconsciously avoid spraying water into your vagina.'
  175. else
  176. cumspclnt = 8
  177. gs 'cum_cleanup'
  178. end
  179. gs 'din_van', 'dryOff'
  180. end
  181. end
  182. gs 'selfplay', 'shower_dildo_check'
  183. act 'Take a selfie':
  184. gs 'telefon', 'Phone_selfie_image_bathing', 'shower'
  185. end
  186. gs 'din_van', 'brit'
  187. if vanr_lock = 0 and $loc = 'vanrPar':
  188. *nl
  189. 'In your absentmindedness, you have forgotton to close the door.'
  190. 'The idea that the door is open occupies your mind while you are showering. It would be very embarrassing if your brother or stepfather looked in at the wrong time.'
  191. if locat['Fam_inGad'] = 0: gs 'vanrPar', 'peek'
  192. end
  193. end
  194. killvar 'noshampoo_tmp'
  195. end
  196. $bath = "gs 'din_van', 'bath'"
  197. if $ARGS[0] = 'bath':
  198. act 'Soak in the bath (0:30)':
  199. menu_off = 1
  200. *clr & cla
  201. minut += 30
  202. pcs_sweat = 7 + rand(0,4)
  203. pcs_mood += 20
  204. if $loc = 'vanrPar' or $loc = 'tanvanr' or $loc = 'LariskaHome' or hotelmc_inventory['shampoo'] = 1: noshampoo = 1
  205. noshampoo_tmp = noshampoo
  206. gs 'din_van', 'showerdin'
  207. gs 'body', 'SkinGain', 'Bath'
  208. gs 'stat'
  209. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash4.jpg"></center>'
  210. *nl
  211. 'You undress while the bathtub fills up and dip a toe into the water. It is just the right temperature, so you climb in and let yourself sink into the warm water, moaning softly as you feel your muscles start to relax.'
  212. if daystart - daystart_start < 9 and $start_type[1] = 'tg':
  213. pcs_horny += rand(6,10)
  214. 'You stare at the smooth, soft legs sticking out of the water. You''re still not used to this new body and the look of all this roundness.'
  215. 'As you start to soap yourself, you unwittingly turn your attention to your breasts. They''re so soft and big, and when you touch them you feel an unfamiliar but pleasant sensation. You take your time getting familiar with your new body, then you begin to wash yourself in earnest.'
  216. elseif daystart - daystart_start < 29 and $start_type[1] = 'tg':
  217. pcs_horny += rand(2,6)
  218. 'You have become a little accustomed to your female body and casually soap up all these soft curves and rinse yourself off, rubbing your hands all over your feminine body to make sure you didn''t miss a spot.'
  219. else
  220. pcs_horny += rand(0,2)
  221. 'You lean back and relax for a while. '+iif(noshampoo_tmp = 1, 'It’s not your shampoo, so you use a little more than you normally would; with a tinge of guilt you ', 'Using your own shampoo, you carefully ')+'begin to lather your body, gently gliding your soft hands over your smooth curves, and wash yourself thoroughly.'
  222. end
  223. if mc_inventory['shampoo'] = 0 and noshampoo_tmp = 1:
  224. 'When you get a chance, you should stop by the supermarket and buy some shampoo.'
  225. elseif mc_inventory['shampoo'] <= 5:
  226. 'You are getting low on shampoo, with only <<mc_inventory[''shampoo'']>> remaining. When you get a chance, you should stop by the supermarket and buy some more.'
  227. end
  228. if hypnoAddict > 0:'You have no reason to, but you carefully avoid cleaning out your pussy and ass.'
  229. if deodorant_on = 1: gs 'sweat', 'remove_deo' & 'Your deodorant gets washed away in the bath.'
  230. if bodyVars['weight_warning'] > 0:
  231. if bodyVars['weight_warning'] = 1: $weightwarn = 'losing'
  232. if bodyVars['weight_warning'] = 2: $weightwarn = 'gaining'
  233. '<font color="red"><b>You seem to be <<$weightwarn>> weight.</b></font>'
  234. killvar '$weightwarn' & bodyVars['weight_warning'] = 0
  235. end
  236. if normbuffpick = 1:
  237. ''
  238. '<b>You notice that your muscles are starting to show through your skin.</b>'
  239. act 'Examine yourself closer while drying off and getting dressed...': gt 'din_van', 'buffpick'
  240. end
  241. gs 'din_van', 'dryOff'
  242. act '"Wash" your pussy':
  243. menu_off = 1
  244. *clr & cla
  245. if $locM = 'uni_dorm' and $loc ='vann' and rand(0, 5) = 1:gt 'vann', 'v4'
  246. minut += 10
  247. '<center><video autoplay loop src="images/shared/home/bathroom/wash7.mp4"></center>'
  248. *nl
  249. 'You turn on the faucet, lift your legs and scoot your ass over to align your pussy with the jet of warm water. It feels really good and soon a warmth begins to grow in your abdomen.'
  250. if pcs_inhib < 30:inhib_exp += rand(1,3)
  251. pcs_mood += 15
  252. $orgasm_or = 'no'
  253. gs 'arousal', 'clit_vibe', -10, 'masturbate'
  254. $orgasm_or = 'no'
  255. gs 'arousal', 'clit_vibe', -10, 'masturbate'
  256. $orgasm_or = 'yes'
  257. gs 'arousal', 'clit_vibe', 10, 'masturbate'
  258. gs 'arousal', 'end'
  259. gs 'din_van', 'dryOff'
  260. end
  261. gs 'selfplay', 'bathtub_dildo_check'
  262. act 'Take a selfie':
  263. gs 'telefon', 'Phone_selfie_image_bathing', 'bath'
  264. end
  265. gs 'din_van', 'brit'
  266. end
  267. killvar 'noshampoo_tmp'
  268. end
  269. $SkinCare = "gs 'din_van', 'SkinCare'"
  270. if $ARGS[0] = 'SkinCare':
  271. if mc_inventory['moisturiser'] > 0 and moisturiser_time <= totminut:
  272. act 'Apply Moisturizer (0:05)':
  273. mc_inventory['moisturiser'] -= 1
  274. ! Moisturiser wear-off timer, so you can only use twice a day. Cleared in cikl so always available in morning
  275. moisturiser_time = totminut + 10 * 60
  276. menu_off = 1
  277. *clr & cla
  278. minut += 5
  279. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/skincare.jpg"></center>'
  280. 'You get out your skin care products and apply them, the creams feel cool and nice against your skin. You sometimes wonder if all this effort and money is worth it, but one look in the mirror at your skin and you figure it is.'
  281. gs 'body', 'SkinGain', 'Moisturizer'
  282. gs 'stat'
  283. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  284. end
  285. end
  286. end
  287. $brit = "gs 'din_van', 'brit'"
  288. if $ARGS[0] = 'brit':
  289. if lashair ! 1 and pcs_shave['free_razor'] + mc_inventory['razor'] > 0:
  290. !! if shave_menu = 1: legs and pussy
  291. if shave_menu = 1 and mc_inventory['razor'] >= razors_to_use['all']:
  292. if pcs_leghair >= 3 or (pubestyle > 0 and pcs_pubes >= shave_trigger):
  293. if pcs_leghair >= 3 and (pubestyle > 0 and pcs_pubes >= shave_trigger):
  294. if daystart - daystart_start < 9 and $start_type[1] = 'tg':
  295. $shave_act = 'Shave your legs and pussy'
  296. $shave_txt1 = 'You can''t shake off the fact that you''re a girl now, so you decide it''d be best to shave your legs. You begin to lather your legs, still marveling at how soft and round they are. Then you take the razor in your hand and begin to shave your legs.'
  297. $shave_txt2 = 'You feel really awkward, never having done this before as a guy. Luckily, you had more than enough experience with shaving your face and technically this isn''t really all that different. In the end, you get a pretty decent job done.'
  298. elseif daystart - daystart_start < 29 and $start_type[1] = 'tg':
  299. pcs_mood += 10
  300. $shave_txt1 = 'With a newfound routine you lather up your legs and start shaving, careful not to miss a spot. After washing away the foam you softly glide your hands over your smooth legs, feeling good to know that you don''t need to hide your legs in pants. Maybe you should wear a skirt tomorrow?'
  301. elseif pubestyle = 1:
  302. $shave_act = 'Shave your legs and pussy'
  303. if pcs_pubes > 10:
  304. $shave_txt1 = 'You do your legs first before lathering up your crotch and taking a razor to the bush growing there. After a few minutes of shaving, you take a moment to inspect yourself, making sure you got everything.'
  305. $shave_txt2 = 'Satisfied there isn''t even a single hair left, you rinse yourself off, enjoying the newfound smoothness of your pussy.'
  306. else
  307. $shave_txt1 = 'You lather up your legs and crotch, grabbing your razor and carefully scraping away stubble that is growing from them.'
  308. $shave_txt2 = 'After a few minutes of work, you take a moment to inspect yourself, making sure you got every last pube and there isn''t even a bit of stubble left. Satisfied, you rinse yourself off, smiling in relief that your pussy is silky smooth once again.'
  309. end
  310. elseif (pubestyle >= 2 and pubestyle <= 8) or pubestyle >= 12:
  311. if pcs_pubes >= shave_trigger + 5:
  312. $shave_act = 'Shave your legs and pussy'
  313. $shave_txt1 = 'You lather up your legs and carefully shave them. Once finished, you lather up your crotch and start shaving away the edges of your pubic hair. After a few minutes, you''ve given your pussy a perfect hairdoo and rinse off the rest of the soap, admiring your new sexual fashion before deciding what to do next.'
  314. else
  315. $shave_act = 'Shave your legs and trim your bush'
  316. $shave_txt1 = 'You lather up your legs and carefully shave them. Once finished, you spend some time cleaning up the area around your styled pubic hair, trimming back stubble and hair until it''s neat and tidy again.'
  317. end
  318. elseif pubestyle = 9:
  319. $shave_act = 'Shave your legs and maintain your bush'
  320. if pcs_pubes >= 26:
  321. $shave_txt1 = 'You lather up your legs and carefully shave them. Once you''re finished, you spend some time maintaining your bush and your bikini lines, until it is a neat and tidy lawn of hair.'
  322. else
  323. $shave_txt1 = 'You lather up your legs and carefully shave them. Once you''re finished, you spend some time maintaining your bush, keeping it short and neat.'
  324. end
  325. elseif pubestyle = 10:
  326. $shave_act = 'Shave your legs and trim your bush'
  327. if pcs_pubes >= 40:
  328. $shave_txt1 = 'You lather up your legs and carefully shave them. Once you''re finished, you spend some time hacking back the wild jungle covering your crotch. Soon enough, you''re left with a sophisticated and tidy bush of hair that neatly carpets your pussy.'
  329. else
  330. $shave_txt1 = 'You lather up your legs and carefully shave them. Once you''re finished, you spend some time maintaining your bush, keeping it neat and tidy.'
  331. end
  332. elseif pubestyle = 11:
  333. $shave_act = 'Shave your legs and pussy'
  334. if pcs_pubes <= 10:
  335. $shave_txt1 = 'You do your legs first before realizing that the stubble growing around your pussy is starting to become irritating and you can''t put it off any longer. Lathering yourself up, you grab your razor and carefully scrape away the rough itchy hairs have been bothering you so.'
  336. $shave_txt2 = 'After a few minutes of work, you take a moment to inspect yourself, making sure you got every last pube and there isn''t even a bit of stubble hiding in the folds of your crotch somewhere. Satisfied, you rinse yourself off, smiling in relief that your pussy is smooth once again.'
  337. else
  338. $shave_txt1 = 'You do your legs first before lathering up your crotch and taking a razor to the hair growing there. After a few minutes of shaving, you take a moment to inspect yourself, making sure you got every last pube and there isn''t even a bit of stubble hiding in the folds of your crotch somewhere. Satisfied, you rinse yourself off, enjoying the newfound smoothness of your pussy.'
  339. end
  340. else
  341. $shave_act = ''
  342. end
  343. if $shave_act ! '':
  344. act '<<$shave_act>> (0:15)':
  345. menu_off = 1
  346. *clr & cla
  347. !! if $locM = 'uni_dorm' and $loc ='vann' and rand(0, 5) = 0:gt 'vann', 'brit1'
  348. if shave_length < 2:
  349. if pcs_pubes <= 10:
  350. '<center><video autoplay loop src="images/shared/home/bathroom/shave_stubble.mp4"></center>'
  351. else
  352. '<center><video autoplay loop src="images/shared/home/bathroom/shave_bush.mp4"></center>'
  353. end
  354. else
  355. '<center><video autoplay loop src="images/shared/home/bathroom/trim_bush.mp4"></center>'
  356. end
  357. *nl
  358. '<<$shave_txt1>>'
  359. *nl
  360. '<<$shave_txt2>>'
  361. minut += 15
  362. pcs_leghair = 0
  363. stat['leg_hair_growth_timer'] = totminut
  364. pcs_pubes = shave_length
  365. stat['pube_growth_timer'] = totminut
  366. pcs_horny += 5
  367. if pcs_shave['free_razor'] = 1:
  368. pcs_shave['free_razor'] = 0
  369. else
  370. mc_inventory['razor'] -= razors_to_use['all']
  371. end
  372. gs 'din_van', 'dryOff'
  373. gs 'selfplay', 'bathtub_dildo_check'
  374. gs 'selfplay', 'shower_dildo_check'
  375. end
  376. end
  377. end
  378. else
  379. '<br>You don''t need to shave.'
  380. end
  381. end
  382. !! if shave_menu = 2: pussy only
  383. if (shave_menu = 2 or shave_menu = 1) and mc_inventory['razor'] >= razors_to_use['pussy']:
  384. if pubestyle > 0 and pcs_pubes >= shave_trigger:
  385. if pubestyle = 1:
  386. $shave_act = 'Shave your pussy'
  387. if pcs_pubes <= 10:
  388. $shave_txt1 = 'You lather up yourself up, and grab your razor, carefully scraping away stubble that is growing from your crotch.'
  389. $shave_txt2 = 'After a few minutes of work, you take a moment to inspect yourself, making sure you got every last pube and there isn''t even a bit of stubble hiding in the folds of your crotch somewhere. Satisfied, you rinse yourself off, smiling in relief that your pussy is silky smooth once again.'
  390. else
  391. $shave_txt1 = 'You lather up your crotch and take a razor to the hair growing there. After a few minutes of shaving, you take a moment to inspect yourself, making sure you got every last pube and there isn''t even a bit of stubble hiding in the folds of your crotch somewhere. Satisfied, you rinse yourself off, enjoying the newfound smoothness of your pussy.'
  392. end
  393. elseif (pubestyle >= 2 and pubestyle <= 8) or pubestyle >= 12:
  394. if pcs_pubes >= shave_trigger + 5:
  395. $shave_act = 'Shave your pussy'
  396. $shave_txt1 = 'You lather up your crotch and start shaving away the edges of your pubic hair. After a few minutes, you''ve given your pussy a perfect hairdoo and rinse off the rest of the soap, admiring your new sexual fashion.'
  397. else
  398. $shave_act = 'Trim your bush'
  399. $shave_txt1 = 'You lather up your crotch and spend some time cleaning up the stubble around your pussy until your bush is neatly styled again.'
  400. end
  401. elseif pubestyle = 9:
  402. $shave_act = 'Trim your bush'
  403. if pcs_pubes >= 26:
  404. $shave_txt1 = 'You spend some time trimming back your thick bush of pubic hair, until it is a neat and tidy lawn of hair instead.'
  405. else
  406. $shave_txt1 = 'You spend some time maintaining your bush, keeping it short and neat.'
  407. end
  408. elseif pubestyle = 10:
  409. if pcs_pubes >= 40:
  410. $shave_act = 'Trim back your bush'
  411. $shave_txt1 = 'You spend some time hacking back the wild jungle covering your crotch. Soon enough, you''re left with a sophisticated and tidy bush of hair that neatly carpets your pussy.'
  412. else
  413. $shave_act = 'Trim your bush'
  414. $shave_txt1 = 'You spend some time maintaining your bush, trimming back the edges, keeping it neat and tidy.'
  415. end
  416. elseif pubestyle = 11:
  417. $shave_act = 'Shave your pussy'
  418. if pcs_pubes <= 10:
  419. $shave_txt1 = 'As the water of the shower continues to roll down your body, you suddenly realize that the stubble growing around your pussy is starting to become irritating and you can''t put it off any longer. Lathering yourself up, you grab your razor and carefully scrape away the rough itchy hairs have been bothering you so.'
  420. $shave_txt2 = 'After a few minutes of work, you take a moment to inspect yourself, making sure you got every last pube and there isn''t even a bit of stubble hiding in the folds of your crotch somewhere. Satisfied, you rinse yourself off, smiling in relief that your pussy is smooth once again.'
  421. else
  422. $shave_txt1 = 'You lather up yourself up and take a razor to the hair growing over your crotch. After a few minutes of shaving, you take a moment to inspect yourself, making sure you got every last pube and there isn''t even a bit of stubble hiding in the folds of your crotch somewhere. Satisfied, you rinse yourself off, enjoying the newfound smoothness of your pussy.'
  423. end
  424. else
  425. $shave_act = ''
  426. end
  427. if $shave_act ! '':
  428. act '<<$shave_act>> (0:10)':
  429. menu_off = 1
  430. *clr & cla
  431. if shave_length < 2:
  432. if pcs_pubes <= 10:
  433. '<center><video autoplay loop src="images/shared/home/bathroom/shave_stubble.mp4"></center>'
  434. else
  435. '<center><video autoplay loop src="images/shared/home/bathroom/shave_bush.mp4"></center>'
  436. end
  437. else
  438. '<center><video autoplay loop src="images/shared/home/bathroom/trim_bush.mp4"></center>'
  439. end
  440. *nl
  441. minut += 10
  442. pcs_pubes = shave_length
  443. stat['pube_growth_timer'] = totminut
  444. pcs_horny += 5
  445. if pcs_shave['free_razor'] = 1:
  446. pcs_shave['free_razor'] = 0
  447. else
  448. mc_inventory['razor'] -= razors_to_use['pussy']
  449. end
  450. '<<$shave_txt1>>'
  451. *nl
  452. '<<$shave_txt2>>'
  453. gs 'din_van', 'dryOff'
  454. gs 'selfplay', 'bathtub_dildo_check'
  455. gs 'selfplay', 'shower_dildo_check'
  456. end
  457. end
  458. end
  459. end
  460. !! if shave_menu = 3: legs only
  461. if (shave_menu = 3 or shave_menu = 1) and mc_inventory['razor'] >= razors_to_use['legs']:
  462. if pcs_leghair >= 3:
  463. act 'Shave your legs (0:05)':
  464. menu_off = 1
  465. *clr & cla
  466. minut += 5
  467. pcs_leghair = 0
  468. stat['leg_hair_growth_timer'] = totminut
  469. pcs_horny += 5
  470. if pcs_shave['free_razor'] = 1:
  471. pcs_shave['free_razor'] = 0
  472. else
  473. mc_inventory['razor'] -= razors_to_use['legs']
  474. end
  475. !! if $locM = 'uni_dorm' and rand(0, 5) = 5:gt 'vann', 'brit1'
  476. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/shave.jpg"></center>'
  477. *nl
  478. if daystart - daystart_start < 9 and $start_type[1] = 'tg':
  479. 'You can''t shake off the fact that you''re a girl now, so you decide it''d be best to shave your legs. You begin to lather your legs, still marveling at how soft and round they are. Then you take the razor in your hand and begin to shave your legs.'
  480. 'You feel really awkward, never having done this before as a guy. Luckily, you had more than enough experience with shaving your face and technically this isn''t really all that different. In the end, you get a pretty decent job done.'
  481. elseif daystart - daystart_start < 29 and $start_type[1] = 'tg':
  482. pcs_mood += 10
  483. 'With a newfound routine you lather up your legs and start shaving, careful not to miss a spot. After washing away the foam you softly glide your hands over your smooth legs, feeling good to know that you don''t need to hide your legs in pants. Maybe you should wear a skirt tomorrow?'
  484. else
  485. 'You lather your legs up with some soapy water and shave your legs. After a few swift movements, your legs are smooth as silk. The feeling of your smooth legs turns you on a little.'
  486. end
  487. gs 'din_van', 'dryOff'
  488. gs 'selfplay', 'bathtub_dildo_check'
  489. gs 'selfplay', 'shower_dildo_check'
  490. end
  491. end
  492. end
  493. end
  494. end
  495. $tampon = "gs 'din_van', 'tampon'"
  496. if $ARGS[0] = 'tampon':
  497. if mc_inventory['sanitary_pads'] > 0 and (mesec > 0 or (placebopart > 0 and pillcon < 40000)) and isprok = 0 and isprokp = 0 and knowpreg = 0 and $pantyworntype ! 'none':
  498. act 'Use a sanitary pad (0:02)':
  499. menu_off = 1
  500. *clr & cla
  501. mc_inventory['sanitary_pads'] -= 1
  502. isprokp = 1
  503. minut += 2
  504. pcs_mood -= 5
  505. '<center><img <<$set_imgh>> src="images/pc/body/pee/period/pad/<<rand(2,3)>>.jpg"></center>'
  506. *nl
  507. 'You use a sanitary pad.'
  508. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  509. end
  510. end
  511. if mc_inventory['tampons'] > 0 and (mesec > 0 or (placebopart > 0 and pillcon < 40000)) and isprok = 0 and isprokp = 0 and knowpreg = 0:
  512. act 'Use a tampon (0:02)':
  513. menu_off = 1
  514. *clr & cla
  515. mc_inventory['tampons'] -= 1
  516. isprok = 1
  517. minut += 2
  518. pcs_mood -= 5
  519. '<center><img <<$set_imgh>> src="images/pc/body/pee/period/tampon/6.jpg"></center>'
  520. *nl
  521. 'You use a tampon.'
  522. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  523. end
  524. end
  525. end
  526. $quickwash = "gs 'din_van', 'quickwash'"
  527. if $ARGS[0] = 'quickwash':
  528. if cumsumbod-cumsumvag-cumsumass > 0:
  529. act 'Quick wash (0:05)':
  530. menu_off = 1
  531. *clr & cla
  532. cumspclnt = 4
  533. gs 'cum_cleanup'
  534. if pcs_sweat < 30:
  535. pcs_sweat = 15 + rand(0,4)
  536. else
  537. pcs_sweat -= 10 + rand(0,4)
  538. end
  539. minut += 5
  540. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash5.jpg"></center>'
  541. *nl
  542. 'You give yourself a catlick, thus removing any traces of cum.'
  543. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  544. end
  545. end
  546. if cumloc[0]+cumloc[3] > 0 and hypnoAddict = 0:
  547. if func('Cum_Manage', 'check_innards', 0) = 1 or func('Cum_Manage', 'check_innards', 3) = 1:
  548. act 'Let the cum drain from you (0:10)':
  549. menu_off = 1
  550. *clr & cla
  551. cumspclnt = 15 & gs 'cum_cleanup'
  552. minut += 10
  553. gs 'stat'
  554. '<center><img <<$set_imgh>> src="images/pc/body/pee/wiping/no<<rand(3,4)>>.jpg"></center>'
  555. 'You spend minutes waiting between the sudden gushes of semen pouring out of you.'
  556. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  557. end
  558. end
  559. end
  560. gs 'din_van', 'pblc_pee'
  561. end
  562. $wearpan = "gs 'din_van', 'wearpan'"
  563. if $ARGS[0] = 'wearpan':
  564. if $pantyworntype = 'none':
  565. act 'Wear panties (0:02)':
  566. minut += 2
  567. gs 'stat'
  568. gt 'panties', 'view_panty_list', 'bathroom'
  569. end
  570. end
  571. if $braworntype = 'none':
  572. act 'Wear a bra (0:02)':
  573. minut += 2
  574. gs 'stat'
  575. gt 'bras', 'view_bra_list', 'bathroom'
  576. end
  577. end
  578. end
  579. $removepan = "gs 'din_van', 'removepan'"
  580. if $ARGS[0] = 'removepan':
  581. if $pantyworntype ! 'none' and $braworntype ! 'none':
  582. act 'Remove underwear (0:02)':
  583. minut += 2
  584. gs 'stat'
  585. gs 'underwear', 'remove'
  586. gt $loc, $loc_arg
  587. end
  588. end
  589. if $pantyworntype ! 'none':
  590. act 'Remove panties (0:02)':
  591. minut += 2
  592. gs 'stat'
  593. gs 'panties', 'remove'
  594. gt $loc, $loc_arg
  595. end
  596. end
  597. if $braworntype ! 'none':
  598. act 'Remove bra (0:02)':
  599. minut += 2
  600. gs 'stat'
  601. gs 'bras', 'remove'
  602. gt $loc, $loc_arg
  603. end
  604. end
  605. end
  606. !! Meant for non-home bathrooms. If you have a bag stashes the underwear in there and enables putting it back on later.
  607. !! purse_____ variables get wiped in ''wardrobe'', ''clothing'', ''panties'' and ''bra'' so there isn''t a chance of duplication
  608. $publicpan = "gs 'din_van', 'publicpan', $ARGS[0]"
  609. if $ARGS[0] = 'publicpan':
  610. if $pantyworntype ! 'none' and $braworntype ! 'none':
  611. act 'Remove underwear'+iif(bag = 1, ' and put it in your purse ',' ') + '(0:02)':
  612. minut += 2
  613. gs 'stat'
  614. if bag = 1:
  615. $pursepantytype = $pantyworntype
  616. pursepantynumber = pantywornnumber
  617. $pursebratype = $braworntype
  618. pursebranumber = brawornnumber
  619. end
  620. gs 'underwear', 'remove'
  621. gt $loc, $loc_arg
  622. end
  623. elseif bag = 1 and $pantyworntype = 'none' and $braworntype = 'none' and $pursepantytype ! '' and $pursebratype ! '':
  624. act 'Put your underwear back on (0:02)':
  625. minut += 2
  626. gs 'stat'
  627. gs 'panties', 'wear', $pursepantytype, pursepantynumber
  628. gs 'bras', 'wear', $pursebratype, pursebranumber
  629. killvar '$pursepantytype' & killvar 'pursepantynumber'
  630. killvar '$pursebratype' & killvar 'pursebranumber'
  631. gt $loc, $loc_arg
  632. end
  633. end
  634. if $pantyworntype ! 'none':
  635. act 'Remove panties'+iif(bag = 1, ' and put them in your purse ',' ') + '(0:02)':
  636. minut += 2
  637. gs 'stat'
  638. if bag = 1:
  639. $pursepantytype = $pantyworntype
  640. pursepantynumber = pantywornnumber
  641. end
  642. gs 'panties', 'remove'
  643. gt $loc, $loc_arg
  644. end
  645. elseif bag = 1 and $pantyworntype = 'none' and $pursepantytype ! '':
  646. act 'Put your panties back on (0:02)':
  647. minut += 2
  648. gs 'stat'
  649. gs 'panties', 'wear', $pursepantytype, pursepantynumber
  650. killvar '$pursepantytype' & killvar 'pursepantynumber'
  651. gt $loc, $loc_arg
  652. end
  653. end
  654. if $braworntype ! 'none':
  655. act 'Remove bra'+iif(bag = 1, ' and put it in your purse ',' ') + '(0:02)':
  656. minut += 2
  657. gs 'stat'
  658. if bag = 1:
  659. $pursebratype = $braworntype
  660. pursebranumber = brawornnumber
  661. end
  662. gs 'bras', 'remove'
  663. gt $loc, $loc_arg
  664. end
  665. elseif bag = 1 and $braworntype = 'none' and $pursebratype ! '':
  666. act 'Put your bra back on (0:02)':
  667. minut += 2
  668. gs 'stat'
  669. gs 'bras', 'wear', $pursebratype, pursebranumber
  670. killvar '$pursebratype' & killvar 'pursebranumber'
  671. gt $loc, $loc_arg
  672. end
  673. end
  674. !! Changing into a different outfit for prostitution
  675. if prostitute['active'] = 1 and $ARGS[1] ! 'no_prost' and $loc ! 'gschool_break':
  676. gs 'prostitution_functions', 'work_clothes'
  677. if prostitute['work_clothes'] = 0 and prostitute['outfit_is_set']:
  678. act 'Change into prostitute outfit': gt 'prostitution_functions', 'change_to_work', 'restroom'
  679. elseif prostitute['work_clothes'] and prostitute['changed_for_work']:
  680. act 'Change into your regular clothes': gt 'prostitution_functions', 'change_back', 'restroom'
  681. end
  682. end
  683. end
  684. $basin = "gs 'din_van', 'basin'"
  685. if $ARGS[0] = 'basin':
  686. if cumloc[12] = 1:
  687. act 'Rinse your mouth (0:01)':
  688. menu_off = 1
  689. cla
  690. cumspclnt = 2
  691. gs 'cum_cleanup'
  692. minut += 1
  693. gs 'stat'
  694. *nl
  695. 'You rinse your mouth and get rid of the taste of cum.'
  696. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  697. end
  698. end
  699. if cumloc[13] = 1:
  700. act 'Wash the cum from your hands (0:01)':
  701. menu_off = 1
  702. cla
  703. cumspclnt = 9
  704. gs 'cum_cleanup'
  705. minut += 1
  706. gs 'stat'
  707. *nl
  708. 'You wash your hands and get rid of any trace of cum.'
  709. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  710. end
  711. end
  712. if cumloc[11] = 1 and cumloc[16] = 1:
  713. act 'Wash the cum from your face and hair (0:10)':
  714. menu_off = 1
  715. *clr & cla
  716. pcs_makeup = 1
  717. cumspclnt = 9
  718. gs 'cum_cleanup'
  719. cumspclnt = 12
  720. gs 'cum_cleanup'
  721. pcs_hairbsh = 0
  722. if pcs_sweat > 19 : pcs_sweat -= 5
  723. minut += 10
  724. gs 'stat'
  725. '<center><img <<$set_imgh>> src="images/pc/activities/facewash.jpg"></center>'
  726. *nl
  727. 'You clean your face and hair and get rid of any trace of cum.'
  728. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  729. end
  730. elseif cumloc[11] = 1 and cumloc[16] = 0:
  731. act 'Wash the cum from your face (0:05)':
  732. menu_off = 1
  733. *clr & cla
  734. pcs_makeup = 1
  735. cumspclnt = 9
  736. gs 'cum_cleanup'
  737. cumspclnt = 11
  738. gs 'cum_cleanup'
  739. if pcs_sweat > 19 : pcs_sweat -= 5
  740. minut += 2
  741. gs 'stat'
  742. '<center><img <<$set_imgh>> src="images/pc/activities/facewash.jpg"></center>'
  743. *nl
  744. 'You clean your face and get rid of any trace of cum.'
  745. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  746. end
  747. elseif cumloc[11] = 0 and cumloc[16] = 1:
  748. act 'Wash the cum out of your hair (0:10)':
  749. menu_off = 1
  750. cla
  751. cumspclnt = 9
  752. gs 'cum_cleanup'
  753. cumspclnt = 5
  754. gs 'cum_cleanup'
  755. pcs_hairbsh = 0
  756. if pcs_sweat > 19 : pcs_sweat -= 5
  757. minut += 10
  758. gs 'stat'
  759. *nl
  760. 'You clean your hair and get rid of any trace of cum.'
  761. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  762. end
  763. end
  764. if cumloc[2] = 1 or cumloc[5] = 1 or cumloc[6] = 1 or cumloc[7] = 1:
  765. act 'Wash the cum off your clothes (0:10)':
  766. menu_off = 1
  767. *clr & cla
  768. cumspclnt = 9
  769. gs 'cum_cleanup'
  770. cumspclnt = 6
  771. gs 'cum_cleanup'
  772. minut += 10
  773. gs 'stat'
  774. '<center><img <<$set_imgh>> src="images/shared/sex/cum/frotsp.jpg"></center>'
  775. 'You spend ten minutes wiping and rinsing the cum stains out of your clothes. In the end, all that remains of the stains are some damp spots that should dry up in a few minutes.'
  776. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  777. end
  778. end
  779. if cumloc[0]+cumloc[3] > 0 and hypnoAddict = 0:
  780. if func('Cum_Manage', 'check_innards', 0) = 1 or func('Cum_Manage', 'check_innards', 3) = 1:
  781. act 'Let the cum drain from you (0:10)':
  782. menu_off = 1
  783. *clr & cla
  784. cumspclnt = 15 & gs 'cum_cleanup'
  785. minut += 10
  786. gs 'stat'
  787. '<center><img <<$set_imgh>> src="images/pc/body/pee/wiping/no<<rand(3,4)>>.jpg"></center>'
  788. 'You spend minutes waiting between the sudden gushes of semen pouring out of you.'
  789. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  790. end
  791. end
  792. end
  793. if body_write > 0 or face_write > 0:
  794. act 'Wash the writings off your body (0:15)':
  795. menu_off = 1
  796. *clr & cla
  797. body_write = 0
  798. face_write = 0
  799. minut += 15
  800. gs'stat'
  801. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/wash1.jpg"></center>'
  802. *nl
  803. 'You wash off the indecent inscriptions on your body.'
  804. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  805. end
  806. end
  807. if pcs_makeup ! 1 and cosmetic_tattoo = 0:
  808. act 'Wash off cosmetics (0:05)':
  809. menu_off = 1
  810. cla
  811. pcs_makeup = 1
  812. cumspclnt = 9
  813. gs 'cum_cleanup'
  814. cumspclnt = 11
  815. gs 'cum_cleanup'
  816. minut += 5
  817. *nl
  818. 'You wash off your makeup.'
  819. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  820. end
  821. end
  822. if false_lashes >= 1:
  823. act 'Remove false lashes (0:02)':
  824. menu_off = 1
  825. cla
  826. 'You carefully peel off the glued-on strip, careful to protect your natural lashes.'
  827. lashsavechance = rand(0,4)
  828. if lashsavechance = 4:
  829. 'These lashes still look to be in pretty good shape; you could probably use them again.'
  830. if pcs_lashes = 4:fakelashesmink += 1
  831. if pcs_lashes = 3:fakelashesplain += 1
  832. end
  833. pcs_lashes = pcs_naturallashes
  834. false_lashes = 0
  835. minut += 2
  836. gs 'AppearanceSystem', 'UpdateBaseAppearance'
  837. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  838. end
  839. end
  840. if mc_inventory['deodorant'] > 0 and deodorant_on = 0:
  841. act 'Apply deodorant (0:01)':
  842. *clr & cla
  843. menu_off = 1
  844. minut += 1
  845. mc_inventory['deodorant'] -= 1
  846. gs 'sweat', 'deo'
  847. iif(func('body_din','pregnancyVisibility') = 1, '<center><img <<$set_imgh>> src="images/shared/home/bathroom/deodorant_preg.jpg"></center>', '<center><img <<$set_imgh>> src="images/shared/home/bathroom/deodorant.jpg"></center>')
  848. 'You apply deodorant to your armpits. It will keep you feeling fresh and clean for longer.'
  849. act 'Continue': menu_off = 0 & gt $loc, $loc_arg
  850. end
  851. end
  852. if KandidozOnce = 1 and KandidNapr > 0:
  853. act 'Use antifungal Medication':
  854. *clr & cla
  855. menu_off = 1
  856. minut += 1
  857. KandidNapr -= 1
  858. Kandidoz -= 5
  859. '<center><img <<$set_imgh>> src="images/shared/home/kitchen/lekr2.jpg"></center>'
  860. 'You take the large pill with some water, this should help you infection.'
  861. act 'Continue': menu_off = 0 & gt $loc, $loc_arg
  862. end
  863. end
  864. end
  865. $pirManage = "gs 'din_van', 'pirManage'"
  866. if $ARGS[0] = 'pirManage':
  867. gt 'piercing_management', 'main'
  868. end
  869. $enema = "gs 'din_van', 'enema'"
  870. if $ARGS[0] = 'enema':
  871. if mc_inventory['enema_kit'] = 1 and (klismaday ! daystart or arrpos('sparrloc', 3) > 0):
  872. act 'Give yourself an enema (0:05)':
  873. menu_off = 1
  874. cla
  875. *clr
  876. cumspclnt = 7
  877. gs 'cum_cleanup'
  878. minut += 5
  879. klismaday = daystart
  880. klismaday1 = 1
  881. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/klisma.jpg"></center>'
  882. *nl
  883. 'You give yourself an enema, feeling clean down there. Your ass is now ready for anal sex without any awkward surprises.'
  884. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  885. end
  886. end
  887. if cumloc[0]+cumloc[3] > 0 and hypnoAddict = 0:
  888. if mc_inventory['enema_kit'] = 1:
  889. act 'Wash up cum from your insides (0:05)':
  890. menu_off = 1
  891. *clr & cla
  892. cumspclnt = 15 & gs 'cum_cleanup'
  893. cumspclnt = 3 & gs 'cum_cleanup'
  894. minut += 5
  895. gs 'stat'
  896. '<center><img <<$set_imgh>> src="images/shared/home/bathroom/klisma.jpg"></center>'
  897. 'You give yourself a quick enema, feeling clean down there.'
  898. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  899. end
  900. end
  901. end
  902. end
  903. $toymanage = "gs 'din_van', 'toymanage'"
  904. if $ARGS[0] = 'toymanage':
  905. if mc_inventory['buttplug'] = 1 and analplugin = 1:
  906. act 'Remove your butt plug (0:01)':
  907. menu_off = 1
  908. cla
  909. *clr
  910. minut += 1
  911. analplugIN = 0 & analplugout = 0
  912. if pcs_ass < 30:pcs_ass += 1
  913. agape = max(agape, 1)
  914. '<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
  915. *nl
  916. 'You squat and tug gently at the butt plug, gasping as you push it out. You can''t help but feel a bit empty now that it''s out.' & !!0.2.6: Removed unneccessary var check
  917. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  918. end
  919. elseif mc_inventory['buttplug'] = 1 and analplugin = 0:
  920. act 'Insert your butt plug (0:01)':
  921. menu_off = 1
  922. cla
  923. *clr
  924. minut += 1
  925. analplugIN = 1 & analplugout = 0
  926. if pcs_ass < 10:pcs_ass += 5
  927. if pcs_ass >= 10 and pcs_ass < 20:pcs_ass += rand(1, 2)
  928. if pcs_ass >= 20 and pcs_ass < 30:pcs_ass += rand(0, 1)
  929. '<center><img <<$set_imgh>> src="images/pc/body/analplug.jpg"></center>'
  930. *nl
  931. if butpluguse > 0:'You squat and gently rub the butt plug against your anus after lubricating it with a bit of saliva. After a few minutes, you''ve relaxed enough to be able to push it in. Once it''s in, you give it a few gentle tugs, wondering if anyone will catch you wearing it today.'
  932. if butpluguse = 0:butpluguse = 1 & '"If I''m not going to use it, then why did I buy it?" you ask yourself. You look at the butt plug for a while, thinking "It is necessary to start developing my ass so I can have great adventures someday... You could even say huge and thick adventures with crimson heads..." You''re slightly embarrassed at the thought for a second, but are then overcome by your horny fantasies. Determined to get the plug all the way in, you lubricate your anus with your saliva and push the butt plug against it. It hurts a bit at first, but once the thickest part is in the rest follows rather easily. Patting yourself on your ass once it''s in, you wonder if anyone will notice you''re wearing it and then immediately feel naughty for even having thought that.'
  933. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  934. end
  935. end
  936. if mc_inventory['vibe'] = 1 and vibratorIN = 1:
  937. act 'Remove the vibrator (0:01)':
  938. menu_off = 1
  939. cla
  940. *clr
  941. minut += 1
  942. vibratorIN = 0
  943. if pcs_vag < 30:pcs_vag += 1
  944. vgape = max(vgape, 1)
  945. '<center><img <<$set_imgh>> src="images/pc/items/sextoys/vibrator.jpg"></center>'
  946. *nl
  947. 'You spread your legs and take the vibrator out of your pussy, letting out a slight moan as you do so. You feel somewhat empty now.'
  948. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  949. end
  950. elseif mc_inventory['vibe'] = 1 and vibratorIN = 0 and pcs_vag ! 0:
  951. act 'Insert the vibrator in your vagina (0:01)':
  952. menu_off = 1
  953. cla
  954. *clr
  955. minut += 1
  956. vibratorIN = 1
  957. if pcs_vag < 30:pcs_vag += 2
  958. '<center><img <<$set_imgh>> src="images/pc/items/sextoys/vibrator.jpg"></center>'
  959. *nl
  960. 'You spread your legs and slowly insert the vibrator in your pussy, wondering if anyone will notice you wearing it today.'
  961. act 'Finish':gt $loc, $loc_arg
  962. end
  963. end
  964. end
  965. $palelady = "gs 'din_van', 'palelady'"
  966. if $ARGS[0] = 'palelady':
  967. if mc_inventory['cocaine'] > 0:'You have enough cocaine for <<mc_inventory[''cocaine'']>> ' + iif(mc_inventory['cocaine'] = 1, ' line.', ' lines.')
  968. if mc_inventory['cocaine'] > 0 and drugVars['cocaine_day'] ! daystart:
  969. act 'Do a line of cocaine (0:05)':
  970. *clr & cla
  971. menu_off = 1
  972. minut += 5
  973. gs 'drugs', 'cocaine'
  974. if $locclass = 'restroom':
  975. '<center><img <<$set_imgh>> src="images/shared/drugs/public_rr_coke.jpg"></center>'
  976. 'You go into a stall sit down and snort some cocaine, feeling dizzy for just a moment. After that you feel fantastic, and incredibly horny.'
  977. else
  978. '<center><img <<$set_imgh>> src="images/shared/drugs/dur.jpg"></center>'
  979. 'You snort some cocaine, feeling dizzy for just a moment. After that you feel fantastic, and incredibly horny.'
  980. end
  981. act 'Continue': menu_off = 0 & gt $loc, $loc_arg
  982. end
  983. end
  984. end
  985. if $ARGS[0] = 'private':
  986. menu_off = 0
  987. if lashair ! 1 and mc_inventory['razor'] > 0:
  988. 'You have enough razors left for <b><<mc_inventory[''razor'']>></b> more shaves. <a href="exec:gs ''din_van'', ''shave_options''">Shave Options</a>'
  989. if mc_inventory['razor'] <= 2 and razor['warning'] < daystart:
  990. razor['warning'] = daystart + 5
  991. msg' You''re about to run out of razors!'
  992. !' You''re about to run out of razors!'
  993. end
  994. end
  995. if mc_inventory['chafing_cream'] > 0: 'On a shelf is a tube of ointment for chafing, which will be enough for <b><<mc_inventory[''chafing_cream'']>></b> applications.'
  996. if mc_inventory['moisturiser'] > 0:
  997. 'You look at your moisturiser and think you have about <b><<mc_inventory[''moisturiser'']>></b> applications left.'
  998. end
  999. if mc_inventory['tampons'] = 0 and mc_inventory['sanitary_pads'] = 0:
  1000. '<b><font color="red">You have no feminine hygiene products left.</font></b>'
  1001. elseif mc_inventory['tampons'] = 1 and tampon['warning'] ! daystart:
  1002. tampon['warning'] = daystart
  1003. msg'<font color="red">You only have <b><<mc_inventory[''tampons'']>></b> tampon left!</font>'
  1004. elseif mc_inventory['tampons'] = 1:
  1005. msg'<font color="red">You only have <b><<mc_inventory[''tampons'']>></b> tampon left.</font>'
  1006. elseif mc_inventory['tampons'] > 0:
  1007. 'You have <b><<mc_inventory[''tampons'']>></b> tampons.'
  1008. end
  1009. if mc_inventory['sanitary_pads'] = 1 and tampon['warning'] ! daystart:
  1010. tampon['warning'] = daystart
  1011. msg'<font color="red">You only have <b><<mc_inventory[''sanitary_pads'']>></b> pad left!</font>'
  1012. elseif mc_inventory['sanitary_pads'] = 1:
  1013. '<font color="red">You have only <b><<mc_inventory[''sanitary_pads'']>></b> pads left.</font>'
  1014. elseif mc_inventory['sanitary_pads'] > 0:
  1015. 'You have <b><<mc_inventory[''sanitary_pads'']>></b> pads.'
  1016. end
  1017. 'Your deodorant will last you for <b><<mc_inventory[''deodorant'']>></b> more '+iif(mc_inventory['deodorant'] = 1, 'application.', 'applications.')
  1018. if $ARGS[1] = 'hotelroom':
  1019. gs 'din_van', 'shower'
  1020. if $ARGS[2] = 'bath': gs 'din_van', 'bath'
  1021. elseif $loc = 'vanrPar':
  1022. 'You can use your parent''s shampoo.'
  1023. gs 'din_van', 'shower'
  1024. gs 'din_van', 'bath'
  1025. elseif $loc = 'LariskaHome':
  1026. 'You can use Lariska''s shampoo.'
  1027. gs 'din_van', 'shower'
  1028. gs 'din_van', 'bath'
  1029. elseif $loc = 'tanvanr':
  1030. 'You can use Tanya''s shampoo.'
  1031. gs 'din_van', 'shower'
  1032. gs 'din_van', 'bath'
  1033. elseif $loc = 'gad_gpbath':
  1034. elseif mc_inventory['shampoo'] > 0:
  1035. 'You have enough shampoo for <b><<mc_inventory[''shampoo'']>></b> uses.'
  1036. gs 'din_van', 'shower'
  1037. gs 'din_van', 'bath'
  1038. else
  1039. '<font color="red">You''ve run out of shampoo and will have to buy some more before you can wash yourself.</font>'
  1040. end
  1041. gs 'din_van', 'SkinCare'
  1042. if mc_inventory['painkillers'] > 0:
  1043. 'You have <b><<mc_inventory[''painkillers'']>></b> painkiller'+iif(mc_inventory['painkillers'] > 1, 's.', '.')
  1044. if pain['total'] > 0 and pain['killer'] = 0:
  1045. act 'Take a painkiller':
  1046. cla
  1047. gs 'drugs', 'painkiller'
  1048. pcs_hydra += 20
  1049. gs 'stat'
  1050. *nl
  1051. 'You take a painkiller and gulp it down with a glass of water.'
  1052. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1053. end
  1054. end
  1055. end
  1056. if mc_inventory['hair_extensioncream'] > 0:
  1057. '<a href="exec:gs ''drugs'', ''hair_extensioncream'' & gt $loc, $loc_arg">Apply hair extension shampoo.</a> Uses left: <<mc_inventory[''hair_extensioncream'']>>.'
  1058. end
  1059. if mc_inventory['butt_injection'] > 0:
  1060. '<a href="exec:gs ''drugs'', ''butt_injection'' & gt $loc, $loc_arg">Inject the KBI butt enhancement shot.</a> Uses left: <<mc_inventory[''butt_injection'']>>.'
  1061. end
  1062. if mc_inventory['breastcream'] > 0:
  1063. '<a href="exec:gs ''drugs'', ''breastcream'' & gt $loc, $loc_arg">Apply breast cream.</a> Uses left: <<mc_inventory[''breastcream'']>>.'
  1064. end
  1065. gs 'piercing_management', 'set_manage_string'
  1066. if fillimplant = 1:
  1067. if siliconeBag >= 1:
  1068. '<a href="exec:cls & siliconeBag -= 1 & bodyVars[''bust_silicone''] += 10 & gt $loc, $loc_arg">Inject silicone into your breast implants.</a>'
  1069. end
  1070. if bodyVars['bust_silicone'] >= 20:
  1071. '<a href="exec:cls & bodyVars[''bust_silicone''] -= 10 & gt $loc, $loc_arg">Drain silicone from your breast implants.</a>'
  1072. end
  1073. end
  1074. gs 'din_van', 'bteeth'
  1075. gs 'din_van', 'tampon'
  1076. act 'Change clothes and toys':
  1077. cla
  1078. act 'Return':menu_off = 0 & gt $loc, $loc_arg
  1079. gs 'din_van', 'wearpan'
  1080. gs 'din_van', 'removepan'
  1081. if $curloc = 'vanrPar' and $clothingworntype = 'nude':
  1082. act 'Wear clothes (0:05)':
  1083. *clr & cla
  1084. minut += 5
  1085. '<center><video autoplay loop src="images/pc/activities/misc/dress_1.mp4"></video></center>'
  1086. 'You get dressed.'
  1087. gs 'clothing', 'wear_last_worn'
  1088. gs 'stat'
  1089. act 'Return': menu_off = 0 & gt $loc, $loc_arg
  1090. end
  1091. elseif $curloc = 'vanrPar' and $clothingworntype ! 'nude':
  1092. act 'Remove clothes (0:05)':
  1093. *clr & cla
  1094. minut += 5
  1095. '<center><video autoplay loop src="images/pc/items/accessories/computer/webcam/undress1.mp4"></video></center>'
  1096. 'You remove your clothing.'
  1097. gs 'clothing', 'strip'
  1098. gs 'stat'
  1099. act 'Return': menu_off = 0 & gt $loc, $loc_arg
  1100. end
  1101. end
  1102. gs 'din_van', 'toymanage'
  1103. end
  1104. '<a href="exec:msg ''<center>Your weight is <<pcs_weight[0]>>.<<pcs_weight[1]>> kg<br>Your body mass index (BMI) is <<pcs_bmi[0]>>.<<pcs_bmi[1]>>.<br><<$bodyVars[''bmi_desc'']>></center>''">Check weight on the scales</a>'
  1105. gs 'din_van', 'prvt_pee'
  1106. gs 'din_van', 'basin'
  1107. gs 'din_van', 'brit'
  1108. gs 'din_van', 'enema'
  1109. gs 'din_van', 'palelady'
  1110. if mc_inventory['chafing_cream'] > 0 and mosol > 0 and mosal_time <= totminut:
  1111. act 'Rub ointment onto your pussy (0:05)':
  1112. cla
  1113. menu_off = 1
  1114. mosal_time = totminut + 600
  1115. minut += 5
  1116. mc_inventory['chafing_cream'] -= 1
  1117. mosol -= 5
  1118. gs 'stat'
  1119. 'You take a tube of cream and rub it onto your itchy vulva.'
  1120. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1121. end
  1122. end
  1123. !For now, the pregnancy reactions use bimbolevel as a chack. Once the pregnancy fetish is added to the game, the check will likely change to that.
  1124. if knowpreg ! 1 and mc_inventory['pregnancy_test'] > 0 and (abortionbirthdate = 0 or daystart - abortionbirthdate > 100) and last_pee + 59 < totminut:
  1125. act 'Do a pregnancy test (0:05)':
  1126. cla & *clr
  1127. last_pee = totminut
  1128. '<center><img <<$set_imgh>> src="images/pc/items/accessories/birthcontrol/preg_test.jpg"></center>'
  1129. 'You sit down on the toilet and slip the test between your legs, carefully letting loose a stream of urine from your pussy onto the tip. Following the instructions, you then re-cap it and lay it flat on the sink, spending the next five minutes nervously fidgeting, waiting out the suggested time...'
  1130. 'When the time is up, you eagerly snatch it up and yank off the cap to see the results.'
  1131. minut += 5
  1132. mc_inventory['pregnancy_test'] -= 1
  1133. gs 'stat'
  1134. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1135. if pregchem > 120 and bimbolevel < 3 and hypnoAddict = 0 and knowpreg = 0 and husband = 0 and pcs_pregtalk = 0:
  1136. cla
  1137. knowpreg = 1
  1138. thinkpreg = 1
  1139. *nl
  1140. 'The test shows two strips. You are pregnant. As you look at the test in your hand, you are...'
  1141. act 'Horrified':gt 'din_van', 'HorrifiedReact1'
  1142. act 'Concerned':gt 'din_van', 'ConcernedReact1'
  1143. act 'Excited':gt 'din_van', 'ExcitedReact1'
  1144. elseif pregchem > 120 and (bimbolevel = 3 or hypnoAddict = 1) and knowpreg = 0 and husband = 0 and pcs_pregtalk = 0:
  1145. cla
  1146. knowpreg = 1
  1147. thinkpreg = 1
  1148. *nl
  1149. 'The test shows two strips. You are pregnant. As you look at the test in your hand, you are...'
  1150. act 'Excited':gt 'din_van', 'ExcitedReact1'
  1151. if pcs_horny >= 50 or bimbolevel = 3: act 'Aroused':gt 'din_van', 'ArousedReact1'
  1152. elseif pregchem > 120 and knowpreg = 0 and husband = 1 and kid = 0 and pcs_pregtalk = 0:
  1153. knowpreg = 1
  1154. thinkpreg = 1
  1155. gt 'din_van', 'WifeReact1'
  1156. elseif pregchem > 120 and knowpreg = 0 and husband = 1 and kid > 0 and pcs_pregtalk = 0:
  1157. knowpreg = 1
  1158. thinkpreg = 1
  1159. gt 'din_van', 'WifeReact2'
  1160. elseif pcs_pregtalk = 1 and pregchem > 120 and knowpreg = 0:
  1161. *nl
  1162. knowpreg = 1
  1163. thinkpreg = 1
  1164. 'The test shows two strips. You are pregnant.'
  1165. elseif pcs_pregtalk = 1 or (knowpreg = 1 and preg = 1):
  1166. *nl
  1167. knowpreg = 1
  1168. thinkpreg = 1
  1169. 'The test shows two strips. You are pregnant.'
  1170. else
  1171. knowpreg = 0
  1172. *nl
  1173. 'The test shows one band. You are not pregnant.'
  1174. act 'Sigh in relief': gt 'din_van', 'ReliefReact'
  1175. act 'Sigh in disappointment': gt 'din_van', 'DisappointedReact'
  1176. end
  1177. end
  1178. end
  1179. !!breast pump is now in the menu, not on the screen
  1180. if mc_inventory['breast_pump'] > 0 and bp_unbox >= 1:
  1181. act 'Use breast pump':
  1182. gt 'lact_bp', 'bp_milking'
  1183. end
  1184. elseif mc_inventory['breast_pump'] > 0 and bp_unbox <= 0:
  1185. '<a href="exec: gt ''lact_bp'', ''bp_unbox_event''">Unbox</a> your breast pump'
  1186. elseif mc_inventory['breast_pump'] <= 0:
  1187. gs 'lact_bp', 'massage'
  1188. end
  1189. end
  1190. if $ARGS[0] = 'misery':
  1191. menu_off = 1
  1192. if mc_inventory['tech_washing_machine'] > 0:
  1193. if husband > 0 and husbanday > 0 and husporday ! daystart and mc_inventory['laundry_soap'] >= 1:
  1194. husband += 5
  1195. mc_inventory['laundry_soap'] -= 1
  1196. husporday = daystart
  1197. 'The washing machine washed your husband''s dirty laundry.'
  1198. elseif mc_inventory['laundry_soap'] < 1:
  1199. 'You have run out of washing powder for the washing machine.'
  1200. end
  1201. end
  1202. if husband > 0 and husbanday > 0 and husporday ! daystart and mc_inventory['laundry_soap'] >= 2:
  1203. act 'Wash your husband''s clothes (2 units of washing powder) (1:00)':
  1204. *clr & cla
  1205. husband += 5
  1206. mc_inventory['laundry_soap'] -= 2
  1207. minut += 60
  1208. husporday = daystart
  1209. pcs_mood -= 20
  1210. '<center><img <<$set_imgh>> src="images/locations/city/residential/apartment/stir.jpg"></center>'
  1211. *nl
  1212. 'You spend an hour washing your husband''s dirty laundry.'
  1213. act 'Leave the bathroom':menu_off = 0 & gt $loc, $loc_arg
  1214. end
  1215. end
  1216. if husband > 0 and husbanday > 0 and huspolday ! daystart:
  1217. act 'Clean the apartment (1:00)':
  1218. *clr & cla
  1219. husband += 5
  1220. minut += 60
  1221. huspolday = daystart
  1222. pcs_mood -= 20
  1223. !!'<center><img <<$set_imgh>> src="images/shared/home/kitchen/cook.jpg"></center>'
  1224. *nl
  1225. 'You take a rag and start cleaning the apartment.'
  1226. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1227. end
  1228. end
  1229. end
  1230. if $ARGS[0] = 'misery_2':
  1231. menu_off = 1
  1232. if mc_inventory['tech_washing_machine'] > 0:
  1233. if husband > 0 and husbanday > 0 and husporday ! daystart and mc_inventory['laundry_soap'] >= 1:
  1234. husband += 5
  1235. mc_inventory['laundry_soap'] -= 1
  1236. husporday = daystart
  1237. 'The washing machine washed your husband''s dirty laundry.'
  1238. elseif mc_inventory['laundry_soap'] < 1:
  1239. 'You have run out of washing powder for the washing machine.'
  1240. end
  1241. end
  1242. if husband > 0 and husbanday > 0 and husporday ! daystart and mc_inventory['laundry_soap'] >= 2:
  1243. act 'Wash your husband''s clothes (2 units of washing powder) (1:00)':
  1244. *clr & cla
  1245. husband += 5
  1246. mc_inventory['laundry_soap'] -= 2
  1247. minut += 60
  1248. husporday = daystart
  1249. pcs_mood -= 20
  1250. '<center><img <<$set_imgh>> src="images/locations/city/residential/apartment/stir.jpg"></center>'
  1251. *nl
  1252. 'You spend an hour washing your husband''s dirty laundry.'
  1253. act 'Leave the bathroom':menu_off = 0 & gt $loc, $loc_arg
  1254. end
  1255. end
  1256. if husband > 0 and husbanday > 0 and huspolday ! daystart:
  1257. act 'Clean the apartment (1:00)':
  1258. *clr & cla
  1259. husband += 5
  1260. minut += 60
  1261. huspolday = daystart
  1262. pcs_mood -= 20
  1263. !!'<center><img <<$set_imgh>> src="images/shared/home/kitchen/cook.jpg"></center>'
  1264. *nl
  1265. 'You take a rag and start cleaning the apartment.'
  1266. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1267. end
  1268. end
  1269. end
  1270. if $ARGS[0] = 'buffpick':
  1271. menu_off = 1
  1272. '<center><img <<$set_imgh>> src="images/pc/activities/exercises/gym/fit2.jpg"></center>'
  1273. *nl
  1274. 'While drying off and getting dressed, you examine the sleek muscles that are showing through your skin.'
  1275. 'As you do so, you think about how you look and decide:'
  1276. act 'You like how you look.': normbuffpick = 2 & mirror_steam = hour & menu_off = 0 & gt $loc, $loc_arg
  1277. act 'You don''t like how you look.': nrmbfpckct += 1 & normbuffpick = 0 & mirror_steam = hour & menu_off = 0 & gt $loc, $loc_arg
  1278. end
  1279. if $ARGS[0] = 'ReliefReact':
  1280. cla & *clr
  1281. '<center><img <<$set_imgh>> src="images/pc/items/accessories/birthcontrol/preg_test.jpg"></center>'
  1282. 'Negative.'
  1283. *nl
  1284. 'You sigh in relief, letting loose a breath that you feel like you''ve been holding for days. You toss the used test into the trash and happily get on with your not-pregnant day.'
  1285. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1286. end
  1287. if $ARGS[0] = 'DisappointedReact':
  1288. cla & *clr
  1289. '<center><img <<$set_imgh>> src="images/pc/items/accessories/birthcontrol/preg_test.jpg"></center>'
  1290. 'Negative.'
  1291. *nl
  1292. 'You sigh, closing your eyes in disappointment. You had really hoped that this day would be the day you found out you were expecting. But today is not that day. With not a small amount of frustration, you throw the used test into the trash and move on with your day.'
  1293. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1294. end
  1295. if $ARGS[0] = 'HorrifiedReact1':
  1296. menu_off = 1
  1297. cla
  1298. pcs_pregtalk = 1
  1299. minut += 10
  1300. *nl
  1301. 'You stare in disbelief at the test in your hand. The two strips displayed can only mean one thing: you are pregnant. You sink to the floor, mind spinning. Tears well in your eyes. How could this happen?'
  1302. if stat['hidden_vaginal'] > 0 and stat['vaginal'] = 0:
  1303. 'You don''t even know how this is possible. You''ve never even had sex with anyone.'
  1304. 'What did you do to deserve this? What is everyone going to think of you? Your life is ruined.'
  1305. 'After several minutes of sobbing and trying to make sense of your situation, you finally pull yourself off of the floor. You straighten your clothes and wash your face as you begin to accept the situation you''re stuck with.'
  1306. elseif rape > 0 and stat['vaginal'] >= 1:
  1307. 'It’s bad enough that you were raped, but possibly getting pregnant from it as well? It’s completely unfair!'
  1308. 'What did you do to deserve this? What is everyone going to think of you? Your life is ruined.'
  1309. 'After several minutes of sobbing and trying to make sense of your situation, you finally pull yourself off of the floor. You straighten your clothes and wash your face as you begin to accept the situation you''re stuck with.'
  1310. else
  1311. 'This is the worst possible thing that could have happened to you. You feel like you''re going to vomit from the stress.'
  1312. 'What did you do to deserve this? What is everyone going to think of you? Your life is ruined.'
  1313. 'After several minutes of sobbing and trying to make sense of your situation, you finally pull yourself off of the floor. You straighten your clothes and wash your face as you begin to accept the situation you''re stuck with.'
  1314. end
  1315. act 'Finish' :menu_off = 0 & gt $loc, $loc_arg
  1316. end
  1317. if $ARGS[0] = 'ConcernedReact1':
  1318. menu_off = 1
  1319. cla
  1320. pcs_pregtalk = 1
  1321. minut += 10
  1322. *nl
  1323. 'Your mind races as you gaze at the test in your hand. The two strips clearly show that you''re pregnant. You know this isn''t the worst thing that could happen to you, but your life is definitely going to change. Are you even ready for that kind of change?'
  1324. if stat['hidden_vaginal'] > 0 and stat['vaginal'] = 1:
  1325. 'The worst part about this whole situation is that you don''t even know how this happened. How can you get pregnant without having sex?'
  1326. 'After spending a few minutes weighing your options, you choose to get on with your day. You still have a lot to consider before you can decide what to do about this pregnancy, but you can’t spend all day in the bathroom without drawing suspicion.'
  1327. elseif rape > 0 and stat['vaginal'] > 1:
  1328. 'The worst part about this whole situation is that this isn''t even your fault. This was forced on you.'
  1329. 'After spending a few minutes weighing your options, you choose to get on with your day. You still have a lot to consider before you can decide what to do about this pregnancy, but you can’t spend all day in the bathroom without drawing suspicion.'
  1330. else
  1331. 'On some level, you''re aware that this is a consequence of your own actions, but you''re not quite ready to come to terms with that.'
  1332. 'After spending a few minutes weighing your options, you choose to get on with your day. You still have a lot to consider before you can decide what to do about this pregnancy, but you can’t spend all day in the bathroom without drawing suspicion.'
  1333. end
  1334. act 'Finish' :menu_off = 0 & gt $loc, $loc_arg
  1335. end
  1336. if $ARGS[0] = 'ExcitedReact1':
  1337. menu_off = 1
  1338. cla
  1339. pcs_pregtalk = 1
  1340. minut += 10
  1341. *nl
  1342. 'You''re overcome with glee as you look at the pregnancy test in your hand. Its two strips confirm that your wish has been granted: you are pregnant. You giggle as you clutch the pregnancy test, excited to share the news with everyone you know.'
  1343. if stat['hidden_vaginal'] > 0 and stat['vaginal'] = 1:
  1344. 'You''re not sure how this happened, but you''re not going to complain. Who cares if a miracle made it happen?'
  1345. 'You spend several minutes fantasizing about your entry into parenthood before you remember you have places you need to be. You finally get up, still giddy as you go on with your day.'
  1346. elseif rape > 0 and stat['vaginal'] > 1:
  1347. 'You don’t even care about the circumstances that got you pregnant. It was absolutely worth it for this moment.'
  1348. 'You spend several minutes fantasizing about your entry into parenthood before you remember you have places you need to be. You finally get up, still giddy as you go on with your day.'
  1349. else
  1350. 'Every time you''ve had sex, you hoped the act would make you into a mother.'
  1351. 'You spend several minutes fantasizing about your entry into parenthood before you remember you have places you need to be. You finally get up, still giddy as you go on with your day.'
  1352. end
  1353. act 'Finish' :menu_off = 0 & gt $loc, $loc_arg
  1354. end
  1355. if $ARGS[0] = 'ArousedReact1':
  1356. menu_off = 1
  1357. cla
  1358. pcs_pregtalk = 1
  1359. minut += 10
  1360. *nl
  1361. 'You rub your thighs together as you stare at the pregnancy test in your hand. The two strips displayed confirm that you’ve been knocked up. You excitedly recount every load of cum blasted into your fertile womb, wondering which one found purchase. You gently rub your clit in a circular motion as you think about the fact that, in a few months, everyone who sees your large, pregnant belly will know what a slut you are.'
  1362. if rape > 0 and stat['vaginal'] > 1 and incest['exp'] = 0:
  1363. 'You pick up speed as you recall your rapist forcefully pumping you full of his wonderful semen without any concern for your desires. You loved having your dignity stripped away as a complete stranger decided to make you a mother.'
  1364. elseif incest['exp'] > 0:
  1365. 'You pick up speed as you recall willingly allowing yourself to be pumped full of all of that wonderful semen. Knowing that you would get pregnant filled you with joy every time someone shot rope after rope of their baby batter into you.'
  1366. 'The taboo knowledge that you could have gotten pregnant from incest turns you on even more.'
  1367. else
  1368. 'You pick up speed as you recall willingly allowing yourself to be pumped full of all of that wonderful semen. Knowing that you would get pregnant filled you with joy every time someone shot rope after rope of their baby batter into you.'
  1369. end
  1370. *nl
  1371. 'After several minutes of this, you orgasm hard. You spend a moment panting before cleaning up and straightening your clothes. Once you''ve freshened up, you move on with your day, still aroused.'
  1372. act 'Finish' :menu_off = 0 & gt $loc, $loc_arg
  1373. end
  1374. if $ARGS[0] = 'WifeReact1':
  1375. menu_off = 1
  1376. cla
  1377. pcs_pregtalk = 1
  1378. minut += 10
  1379. *nl
  1380. 'A wide smile spreads across your face as you look down at the pregnancy test. The two strips displayed exclaim that you’re finally starting a family. You begin to shake with excitement as you think about how you are going to tell your husband. Should you just tell him as soon as you see him, or do you want to make it an even more special occasion and tell him over a fancy dinner? Maybe you should just nonchalantly drop the test in front of him to see his reaction. Regardless of how you decide to do it, you can''t keep the excitement to yourself any longer. You take a brief moment to freshen up before leaving the room. '
  1381. *nl
  1382. 'You have a little time before your husband gets home and the baby''s room isn''t going to design itself.'
  1383. act 'Finish' :menu_off = 0 & gt $loc, $loc_arg
  1384. end
  1385. if $ARGS[0] = 'WifeReact2':
  1386. menu_off = 1
  1387. cla
  1388. pcs_pregtalk = 1
  1389. minut += 10
  1390. *nl
  1391. 'You smile warmly at the test in your hand. You are definitely pregnant again. Your chest swells with joy, knowing that your wonderful family is about to get a little bit larger. You contentedly sigh as you envision your pregnant belly swelling again, proclaiming your motherhood to the world. Having a child is the greatest thing that has ever happened to you, and you’re thrilled at the opportunity to experience it again. You can’t wait any longer to tell your husband. You quickly spruce yourself up before going to share the fantastic news with your spouse.'
  1392. act 'Finish' :menu_off = 0 & gt $loc, $loc_arg
  1393. end
  1394. !!------------------------------------------------------------------------------------------------------------------------------------------------------
  1395. !!Peeing text
  1396. !!I''m separating the following text into two versions, some for private bathrooms like those found in homes, and one set for public bathrooms, like those at the school.
  1397. !!Private bathrooms: One of these text should be randomly selected if using a private restroom, such as one in a home.
  1398. if $ARGS[0] = 'prvt_pee':
  1399. if last_pee + 59 < totminut and cheatVars['pee'] = 0:
  1400. act 'Go pee (0:02)':
  1401. *clr & cla
  1402. menu_off = 1
  1403. last_pee = totminut
  1404. minut += 2
  1405. '<center><img <<$set_imgh>> src="images/pc/body/pee/private/' + rand(1,19) + '.jpg"></center>'
  1406. !!Get random private peeing picture
  1407. rand_pee = rand(0,7)
  1408. if rand_pee = 0:
  1409. 'You take a seat on the toilet and begin peeing, glad to feel the pressure released.'
  1410. elseif rand_pee = 1:
  1411. 'After sitting on the toilet you finally release your bladder. A shiver runs down your spine as the stream flows out of you. "Wow." you think, "I had to go more than I thought."'
  1412. elseif rand_pee = 2:
  1413. 'Settling onto the toilet seat, you pull out your phone and begin checking for messages and doing other things to occupy the time until the stream slows to a trickle and finally stops.'
  1414. elseif rand_pee = 3:
  1415. 'You plop down onto the porcelain throne and begin to unleash a torrent of urine into the bowl. As you wait for nature to finish it''s business, you begin to daydream a bit as your mind wanders off.'
  1416. elseif rand_pee = 4:
  1417. 'While relaxing your bladder and beginning to pee, you decide to reflect on your recent interactions with the people in your life. "What do they think of me? Do they talk behind my back?" You continue contemplating until your body signals that the flow has ended.'
  1418. elseif rand_pee = 5:
  1419. 'You nearly piss yourself as you rush to seat yourself on the toilet. Unable to hold back the flood anymore, your body releases a seemingly endless stream as you moan quietly in relief, thankful that you made it in time.'
  1420. elseif rand_pee = 6:
  1421. 'After situating yourself on the toilet, you relax and begin peeing. The urine tickles your labia as it sprays out of you into the toilet bowl.'
  1422. else
  1423. 'As you begin to sit down, you nearly jump back to your feet as the cold toilet seat stings your bare bottom. You shake your head and sigh before settling back onto the icy seat and doing your business.'
  1424. end
  1425. !!If PC is on her period and using tampon, then the following options should appear as well as the standard "Finish and wipe" act:
  1426. !!This may require an addition check to see if the PC has a purse since I think they need that to carry tampons with them.
  1427. if mc_inventory['tampons'] > 0 and (mesec > 0 or (placebopart > 0 and pillcon < 40000)) and (isprok = 1 or (isprok = 0 and isprokp = 0)) and knowpreg = 0:
  1428. act 'Change tampon (0:02)':
  1429. *clr & cla
  1430. mc_inventory['tampons'] -= 1
  1431. isprok = 1
  1432. minut += 2
  1433. pcs_mood -= 5
  1434. '<center><img <<$set_imgh>> src="images/pc/body/pee/period/tampon/' + rand(1,12) + '.jpg"></center>'
  1435. 'Reaching down and taking the string between your fingers, you slowly pull the used tampon from your vagina. You wrap it in toilet paper to be thrown in the trash bin. Opening your purse, you retrieve a fresh one, unpack it and carefully insert it into yourself.'
  1436. gs 'din_van', 'prvt_pee_end'
  1437. end
  1438. end
  1439. !!If PC is on her period and using pad, then the following options should appear as well as the standard "Finish and wipe" act:
  1440. !!This may require an addition check to see if the PC has a purse since I think they need that to carry pads with them.
  1441. if isprokp = 1 and mc_inventory['sanitary_pads'] > 0 and $pantyworntype ! 'none':
  1442. act 'Change pad (0:02)':
  1443. *clr & cla
  1444. mc_inventory['sanitary_pads'] -= 1
  1445. isprokp = 1
  1446. minut += 2
  1447. pcs_mood -= 5
  1448. '<center><img <<$set_imgh>> src="images/pc/body/pee/period/pad/' + rand(1,6) + '.jpg"></center>'
  1449. 'Checking your pad, you decide it''s time for a new one. You carefully peel it off of your panties before folding it into thirds and setting it aside to be thrown away. Digging in your bag, you pull out a fresh pad, unpackage it, peel off the adhesive strip, and place it into your underwear. Finally, you wrap the wings around the sides of the gusset to make sure it is nice and secure.'
  1450. gs 'din_van', 'prvt_pee_end'
  1451. end
  1452. end
  1453. gs 'din_van', 'prvt_pee_end'
  1454. end
  1455. end
  1456. end
  1457. if $ARGS[0] = 'prvt_pee_end':
  1458. act 'Finish and wipe':
  1459. *clr & cla
  1460. cumspclnt = 15 & gs 'cum_cleanup'
  1461. if pcs_willpwr < 150: pcs_willpwr += 1
  1462. gs 'stat'
  1463. '<center><img <<$set_imgh>> src="images/pc/body/pee/wiping/' + rand(1,9) + '.jpg"></center>'
  1464. rand_pee = rand(0,2)
  1465. if rand_pee = 0:
  1466. 'Gathering some toilet paper from the roll, you reach down wipe your vagina clean from the last drops of urine leaking from you before dropping the paper into the toilet.'
  1467. elseif rand_pee = 1:
  1468. 'Wrapping some toilet paper around your hand, you reach around and give your pussy and ass a quick wipe before letting the paper drop into the bowl.'
  1469. else
  1470. 'You take a wad of toilet paper in your fist before using it to gently pat your vagina dry. You toss the used material in the toilet and flush it down.'
  1471. end
  1472. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1473. end
  1474. end
  1475. !!Public bathrooms: These texts should be randomly selected if using a public restroom
  1476. if $ARGS[0] = 'pblc_pee':
  1477. if last_pee + 59 < totminut and cheatVars['pee'] = 0:
  1478. act 'Go pee (0:04)':
  1479. *clr & cla
  1480. menu_off = 1
  1481. last_pee = totminut
  1482. minut += 2
  1483. '<center><img <<$set_imgh>> src="images/pc/body/pee/public/' + rand(1,11) + '.jpg"></center>'
  1484. rand_pee = rand(0,7)
  1485. if rand_pee = 0:
  1486. 'Settling onto the toilet seat, you pull out your phone and begin checking for messages and doing other things to occupy the time until the stream slows to a trickle and finally stops.'
  1487. elseif rand_pee = 1:
  1488. 'While relaxing your bladder and beginning to pee you decide to reflect on your recent interactions with the people in your life. "What do they think of me? Do they talk behind my back?" You continue contemplating until your body signals that the flow has ended.'
  1489. elseif rand_pee = 2:
  1490. 'You nearly piss yourself as you rush to seat yourself onto the toilet. Unable to hold back the flood anymore, your body releases a seemingly endless stream as you moan quietly in relief, thankful that you made it in time.'
  1491. elseif rand_pee = 3:
  1492. 'Immediately up entering the restroom, your nostrils are assaulted by the most heinous stench. Knowing that you have no other option, you try to suppress your gags as you sit in a stall and do your business.'
  1493. elseif rand_pee = 4:
  1494. *clr
  1495. '<center><img <<$set_imgh>> src="images/pc/body/pee/public/hovercraft' + rand(1,2) + '.jpg"></center>'
  1496. 'You enter the stall and groan in disgust at the sight of the gross facilities. Realizing that you have no choice, you decided to "hovercraft" it. Instead of sitting down on the filthy seat, you hover your ass above the bowl before letting go of the pee you''d been holding, not caring if all of the stream gets into the toilet or elsewhere.'
  1497. else
  1498. !!Graffiti trigger text
  1499. rand_pee = rand(0,21)
  1500. 'As you sit down to relieve your bladder you get distracted reading some of the graffiti on the wall of the stall.'
  1501. $rand_girl = func('gschool_randperson', 1, '', 1, 1, 1, 1, 1, 0)
  1502. if rand_pee = 0:
  1503. 'Albina and her Starlets are a bunch of dirty whores!'
  1504. elseif rand_pee = 1:
  1505. '<<$rand_girl>>''s vagina smells like puke!'
  1506. elseif rand_pee = 2:
  1507. 'Beware of Dimka! He''s not as nice as he seems!'
  1508. elseif rand_pee = 3:
  1509. 'If you''re on the rag, check the seat when you get up and WIPE IT OFF!!! No one wants a nasty seat!'
  1510. elseif rand_pee = 4:
  1511. 'If you smell fish, it''s probably your dirty twat! Hahaha!'
  1512. elseif rand_pee = 5:
  1513. 'Shave your punani, bitches! No one likes digging through a forest, LOL.'
  1514. elseif rand_pee = 6:
  1515. 'Shaved pussies stink and are prone to infection! Don''t believe the lies!'
  1516. elseif rand_pee = 7:
  1517. 'Fight the Patriarchy!'
  1518. elseif rand_pee = 8:
  1519. 'Tampons vs. Pads, cast your vote! Below this text are hash marks indicating various girl''s preference. One person also wrote "Freebleeder for life!" Ewww.'
  1520. elseif rand_pee = 9:
  1521. 'Petka''s cock is smaller than my lipstick tube, LOL!'
  1522. elseif rand_pee = 10:
  1523. 'You''re beautiful! Believe that!'
  1524. elseif rand_pee = 11:
  1525. 'Putin is a chauvinist pig!'
  1526. elseif rand_pee = 12:
  1527. 'Suck dick! It''s good for you!'
  1528. elseif rand_pee = 13:
  1529. '"I''ll pull out, I swear! is the most dangerous lie you can believe." This text is followed by a crude drawing of a pregnant woman.'
  1530. elseif rand_pee = 14:
  1531. 'Cut back on the perfume, ladies. It smells like a unicorn farted in here.'
  1532. elseif rand_pee = 15:
  1533. '<<$rand_girl>> is a slut and everyone knows it!'
  1534. elseif rand_pee = 16:
  1535. 'Men are like pantyhose; They either run, cling, or don''t fit right in the crotch!'
  1536. elseif rand_pee = 17:
  1537. 'Gopnik guys are SO HOT!!!'
  1538. elseif rand_pee = 18:
  1539. 'That rumor about black guys is true! Just ask Marcus for a sneak peek.'
  1540. elseif rand_pee = 19:
  1541. 'Butt sex is the best sex!'
  1542. elseif rand_pee = 20:
  1543. 'I just wrote on the wall. Take THAT, society!'
  1544. else
  1545. 'Never quit loving your clit.'
  1546. end
  1547. end
  1548. if mc_inventory['tampons'] > 0 and (mesec > 0 or (placebopart > 0 and pillcon < 40000)) and (isprok = 1 or (isprok = 0 and isprokp = 0)) and knowpreg = 0:
  1549. act 'Change tampon (0:02)':
  1550. *clr & cla
  1551. mc_inventory['tampons'] -= 1
  1552. isprok = 1
  1553. minut += 2
  1554. pcs_mood -= 5
  1555. '<center><img <<$set_imgh>> src="images/pc/body/pee/period/tampon/' + rand(1,12) + '.jpg"></center>'
  1556. 'Reaching down and taking the string between your fingers, you slowly pull the used tampon from your vagina. You wrap it in toilet paper to be thrown in the trash bin. Opening your purse, you retrieve a fresh one before unpackaging it and carefully inserting it into yourself.'
  1557. gs 'din_van', 'pblc_pee_end'
  1558. end
  1559. end
  1560. if mesec > 0 and (isprokp = 1 or (isprok = 0 and isprokp = 0)) and mc_inventory['sanitary_pads'] > 0 and bag = 1 and $pantyworntype ! 'none':
  1561. act 'Change pad (0:02)':
  1562. *clr & cla
  1563. mc_inventory['sanitary_pads'] -= 1
  1564. isprokp = 1
  1565. minut += 2
  1566. pcs_mood -= 5
  1567. '<center><img <<$set_imgh>> src="images/pc/body/pee/period/pad/' + rand(1,6) + '.jpg"></center>'
  1568. 'Checking your pad, you decide it''s time for a new one. You carefully peel it off of your panties before folding it into thirds and setting it aside to be thrown away. Digging in your bag, you pull out a fresh pad, unpackage it, peel off the adhesive strip, and place it into your underwear. Finally, you wrap the wings around the sides of the gusset to make sure it is nice and secure.'
  1569. gs 'din_van', 'pblc_pee_end'
  1570. end
  1571. end
  1572. gs 'din_van', 'pblc_pee_end'
  1573. end
  1574. end
  1575. end
  1576. if $ARGS[0] = 'pblc_pee_end':
  1577. act 'Finish and wipe':
  1578. *clr & cla
  1579. cumspclnt = 15 & gs 'cum_cleanup'
  1580. if pcs_willpwr < 150: pcs_willpwr += 1
  1581. gs 'stat'
  1582. '<center><img <<$set_imgh>> src="images/pc/body/pee/wiping/' + rand(1,9) + '.jpg"></center>'
  1583. rand_pee = rand(0,6)
  1584. if rand_pee = 0:
  1585. 'Gathering some toilet paper from the roll, you reach down wipe your vagina clean from the last drops of urine leaking from you before dropping the paper into the toilet.'
  1586. elseif rand_pee = 1:
  1587. 'Wrapping some toilet paper around your hand, you reach around and give your pussy and ass a quick wipe before letting the paper drop into the bowl.'
  1588. elseif rand_pee = 2:
  1589. 'You take a wad of toilet paper in your fist before using it to gently pay your vagina dry. You toss the used material in the toilet and flush it down.'
  1590. elseif rand_pee = 3:
  1591. 'You gather some of the rough, cheap toilet paper and use it to lightly wipe yourself, not wanting to irritate your sensitive skin. You drop it into the dirty toilet and use your foot to push the handle in order to flush.'
  1592. elseif rand_pee = 4:
  1593. 'Looking for the roll of toilet paper, you are dismayed to see that the roll has been used up. Noticing that the stall next to you seems occupied, you politely ask the stranger to help you out. The stranger chuckles a bit before kindly handing you a wad under the stall wall, which you happily use.'
  1594. else
  1595. *clr
  1596. '<center><img <<$set_imgh>> src="images/pc/body/pee/wiping/no' + rand(1,6) + '.jpg"></center>'
  1597. 'Reaching out for toilet paper, you sigh as you notice that the roll is empty. Annoyed, you wiggle your ass to shake the last few drops off before pulling up your panties and walking out of the stall.'
  1598. end
  1599. act 'Finish':menu_off = 0 & gt $loc, $loc_arg
  1600. end
  1601. end
  1602. if $ARGS[0] = 'shave_options':
  1603. menu_off = 1
  1604. *clr & cla
  1605. if shave_img_hgt = 0:shave_img_hgt = 100
  1606. !! images handled using func(''$body_image'', ''pubes'')
  1607. *p '<center><h3><b>Shaving optons</b></h3>'
  1608. 'Here you can choose your style for pubic hair and which body parts you wish to shave.'
  1609. *nl
  1610. 'Your razor will last for&nbsp;<b><<mc_inventory[''razor'']>></b>&nbsp;more shaves.'
  1611. *nl
  1612. '<b>Change your shaving routine:'
  1613. *nl
  1614. 'Note: Choosing to never shave, or to shave legs only, will remove your chosen shave style.'
  1615. 'You can only choose a style if you currently have enough hair to support it.</b>'
  1616. *nl
  1617. !if shave_menu = 0:nothing
  1618. !if shave_menu = 1:legs and pussy
  1619. !if shave_menu = 2:pussy only
  1620. !if shave_menu = 3:legs only
  1621. if pubestyle = 0:
  1622. *p iif(shave_menu = 1, 'Everything&nbsp;|&nbsp;', '<a href="exec: msg ''You must choose a shave style before you can choose to shave everything.''">Everything</a>&nbsp;|&nbsp;')
  1623. *p iif(shave_menu = 2, 'Pussy only&nbsp;|&nbsp;', '<a href="exec: msg ''You must choose a shave style before you can choose to shave your pussy.''">Pussy only</a>&nbsp;|&nbsp;')
  1624. *p iif(shave_menu = 3, 'Legs only&nbsp;|&nbsp;', '<a href="exec:shave_menu = 3 & pubestyle = 0 & gs ''din_van'', ''shave_options''">Legs only</a>&nbsp;|&nbsp;')
  1625. *p iif(shave_menu = 0, 'Never shave', '<a href="exec:shave_menu = 0 & pubestyle = 0 & gs ''din_van'', ''shave_options''">Never shave</a>')
  1626. else
  1627. *p iif(shave_menu = 1, 'Everything&nbsp;|&nbsp;', '<a href="exec:shave_menu = 1 & gs ''din_van'', ''shave_options''">Everything</a>&nbsp;|&nbsp;')
  1628. *p iif(shave_menu = 2, 'Pussy only&nbsp;|&nbsp;', '<a href="exec:shave_menu = 2 & gs ''din_van'', ''shave_options''">Pussy only</a>&nbsp;|&nbsp;')
  1629. *p iif(shave_menu = 3, 'Legs only&nbsp;|&nbsp;', '<a href="exec:shave_menu = 3 & pubestyle = 0 & gs ''din_van'', ''shave_options''">Legs only</a>&nbsp;|&nbsp;')
  1630. *p iif(shave_menu = 0, 'Never shave', '<a href="exec:shave_menu = 0 & pubestyle = 0 & gs ''din_van'', ''shave_options''">Never shave</a>')
  1631. end
  1632. *nl
  1633. *nl
  1634. if shave_menu = 0:
  1635. 'Your current routine doesn''t include any shaving options.'
  1636. $temp_toggle = 'shave_menu = 2'
  1637. elseif shave_menu = 1:
  1638. 'Your current routine involves shaving your legs and maintaining your current pubic style.'
  1639. 'It takes 15 minutes to complete this routine.'
  1640. $temp_toggle = 'shave_menu = 2'
  1641. elseif shave_menu = 2:
  1642. 'Your current routine involves not shaving your legs and maintaining your current pubic style.'
  1643. 'It takes 10 minutes to complete this routine.'
  1644. $temp_toggle = 'shave_menu = 2'
  1645. elseif shave_menu = 3:
  1646. 'Your current routine involves shaving your legs and not maintaining any chosen pubic style.'
  1647. 'It takes 5 minutes to complete this routine.'
  1648. $temp_toggle = 'shave_menu = 1'
  1649. end
  1650. *nl
  1651. *p '<table border=0 cellspacing=<<shave_img_hgt/25>> cellpadding=5>'
  1652. !! ROW 1: IMAGES
  1653. *p '<TR><TD><center><a href="exec:view''images/pc/body/pussy/hair/pussy.jpg''"><img Height = <<shave_img_hgt>> src="images/pc/body/pussy/hair/pussy.jpg"></a></center></TD>'
  1654. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 2)
  1655. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD>'
  1656. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 3)
  1657. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD>'
  1658. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 4)
  1659. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD>'
  1660. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 5)
  1661. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD></TR>'
  1662. !! ROW 1: TEXT
  1663. *p '<TR><TD><center>'
  1664. if pubestyle ! 1:
  1665. *p '<a href="exec:pubestyle = 1 & shave_length = 0 & shave_trigger = 3 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Clean Shave</a>'
  1666. else
  1667. *p 'Clean Shave'
  1668. end
  1669. *p '</center></TD><TD><center>'
  1670. if pubestyle ! 2 and pcs_pubes > 15:
  1671. *p '<a href="exec:pubestyle = 2 & shave_length = 16 & shave_trigger = 21 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">V-shaped</a>'
  1672. else
  1673. *p 'V-shaped'
  1674. end
  1675. *p '</center></TD><TD><center>'
  1676. if pubestyle ! 3 and pcs_pubes > 15:
  1677. *p '<a href="exec:pubestyle = 3 & shave_length = 16 & shave_trigger = 21 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Triangle-shaped</a>'
  1678. else
  1679. *p 'Triangle-shaped'
  1680. end
  1681. *p '</center></TD><TD><center>'
  1682. if pubestyle ! 4 and pcs_pubes > 15:
  1683. *p '<a href="exec:pubestyle = 4 & shave_length = 16 & shave_trigger = 21 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Landing-strip</a>'
  1684. else
  1685. *p 'Landing-strip'
  1686. end
  1687. *p '</center></TD><TD><center>'
  1688. if pubestyle ! 5 and pcs_pubes > 15:
  1689. *p '<a href="exec:pubestyle = 5 & shave_length = 16 & shave_trigger = 21 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Heart-shaped</a>'
  1690. else
  1691. *p 'Heart-shaped'
  1692. end
  1693. *p '</center></TD></TR>'
  1694. !! ROW 2: IMAGES
  1695. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 6)
  1696. *p '<TR><TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD>'
  1697. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 7)
  1698. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD>'
  1699. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 8)
  1700. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD>'
  1701. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 9)
  1702. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD>'
  1703. $temp_pube_image = func('$body_image', 'pubes', 26, pcs_pubecol[2], 10)
  1704. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD></TR>'
  1705. !! ROW 2: TEXT
  1706. *p '<TR><TD><center>'
  1707. if pubestyle ! 6 and pcs_pubes > 15:
  1708. *p '<a href="exec:pubestyle = 6 & shave_length = 16 & shave_trigger = 21 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Flame-shaped</a>'
  1709. else
  1710. *p 'Flame-shaped'
  1711. end
  1712. *p '</center></TD><TD><center>'
  1713. if pubestyle ! 7 and pcs_pubes > 15:
  1714. *p '<a href="exec:pubestyle = 7 & shave_length = 16 & shave_trigger = 21 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Cross-Shaped</a>'
  1715. else
  1716. *p 'Cross-Shaped'
  1717. end
  1718. *p '</center></TD><TD><center>'
  1719. if pubestyle ! 8 and pcs_pubes > 16:
  1720. *p '<a href="exec:pubestyle = 8 & shave_length = 16 & shave_trigger = 21 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Trimmed</a>'
  1721. else
  1722. *p 'Trimmed'
  1723. end
  1724. *p '</center></TD><TD><center>'
  1725. if pubestyle ! 9 and pcs_pubes > 20:
  1726. *p '<a href="exec:pubestyle = 9 & shave_length = 20 & shave_trigger = 26 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Small Bush</a>'
  1727. else
  1728. *p 'Small Bush'
  1729. end
  1730. *p '</center></TD><TD><center>'
  1731. if pubestyle ! 10:
  1732. *p '<a href="exec:pubestyle = 10 & shave_length = 26 & shave_trigger = 31 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Full Bush</a>'
  1733. else
  1734. *p 'Full Bush'
  1735. end
  1736. *p '</center></TD></TR>'
  1737. !! ROW 3: IMAGES
  1738. $temp_pube_image = func('$body_image', 'pubes', 5, pcs_pubecol[2], 11)
  1739. *p '<TR><TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD>'
  1740. $temp_pube_image = func('$body_image', 'pubes', 16, pcs_pubecol[2], 12)
  1741. *p '<TD><center><a href="exec:view''<<$temp_pube_image>>''"><img Height = <<shave_img_hgt>> src="<<$temp_pube_image>>"></a></center></TD></TR>'
  1742. !! ROW 3: TEXT
  1743. *p '<TR><TD><center>'
  1744. if pubestyle ! 11 and pcs_pubes > 10:
  1745. *p '<a href="exec:pubestyle = 11 & shave_length = 0 & shave_trigger = 8 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Lazy</a>'
  1746. else
  1747. *p 'Lazy'
  1748. end
  1749. *p '</center></TD><TD><center>'
  1750. if pubestyle ! 12 and pcs_pubes > 15:
  1751. *p '<a href="exec:pubestyle = 12 & shave_length = 16 & shave_trigger = 21 & <<$temp_toggle>> & gt ''din_van'', ''shave_options''">Mini Bush</a>'
  1752. else
  1753. *p 'Mini Bush'
  1754. end
  1755. *p '</center></TD></TR></table>'
  1756. *p '<sub><small>Lazy - (don''t immediately shave stubble)</small></sub></center>'
  1757. killvar '$temp_pube_image'
  1758. killvar '$temp_toggle'
  1759. act 'Return':menu_off = 0 & gt $loc, $loc_arg
  1760. act 'Set image height for this view':
  1761. shave_img_hgt = input("Enter height in pixels you want for images on this page<br>(default 100, min 50, max 500)")
  1762. if shave_img_hgt < 50:
  1763. shave_img_hgt = 50
  1764. elseif shave_img_hgt > 500:
  1765. shave_img_hgt = 500
  1766. end
  1767. gt 'din_van', 'shave_options'
  1768. end
  1769. end
  1770. --- din_van ---------------------------------