123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- # wardrobe
- if $ARGS[0] = 'start':
- PShoQuality = ShoQuality
- PShoHeels = ShoHeels
- PShoCut = ShoCut
- PShoStyle = ShoStyle
- $wloc = 'wardrobe'
- if ward_img_hgt = 0:ward_img_hgt = 150
- '<h3><center><b><font color="maroon">Wardrobe overview</b></h3><br><center><font color="maroon">These are the clothes you are currently wearing - Click on an item to change it</font></center>'
- '<br><center><table border=0 cellspacing=<<ward_img_hgt/25>> cellpadding=5>'
- *p '<TH>Bra worn</TH><TH>Outfit worn</TH><TH>Coat (only worn outside when cold)</TH>'
- *P '<TR><TD><center><a href="exec:gt ''bras'', ''view_bra_list'', ''wardrobe''"><img Height = <<ward_img_hgt>> src="<<FUNC(''$body_image'',''bra'')>>"></a></center></TD><TD><center><a href="exec:gt ''clothing_QV'', ''list''"><img Height = <<ward_img_hgt * 2>> src="<<FUNC(''$body_image'',''clothes'')>>"></a></center></TD><TD><center>'
- if defaultcoat = 0:
- '<a href="exec:gt ''cloakroom'', ''view_coat_list''"><img Height = <<ward_img_hgt * 2>> src="images/pc/noitemdh.png"></a>'
- else
- '<a href="exec:gt ''cloakroom'', ''view_coat_list''"><img Height = <<ward_img_hgt * 2>> src="<<FUNC(''$body_image'', ''coat'')>>"></a>'
- end
- '</center></TD>'
- '<TR><TD><center>'
- if $braworntype ! 'none':
- '<a href="exec:gs ''bras'', ''remove'' & gt ''wardrobe'', ''start''">Remove</a>'
- else
- 'Remove'
- end
- '</center></TD><TD><center>'
- if $clothingworntype ! 'nude':
- '<a href="exec:gs ''clothing'', ''strip'' & gt ''wardrobe'', ''start''">Remove</a>'
- else
- 'Remove'
- end
- '</center></TD><TD><center>'
- if defaultcoat ! 0:
- '<a href="exec:defaultcoat_warmth = 0 & defaultcoat = 0 & gt ''wardrobe'', ''start''">Remove</a>'
- else
- 'Remove'
- end
- '</center></TD>'
- *p '<TR><TH>Panties worn</TH><TH>Shoes (Only worn outside)</TH><TH>Purse worn</TH>'
- *P '<TR><TD><center><a href="exec:gt ''panties'', ''view_panty_list'', ''wardrobe''"><img Height = <<ward_img_hgt>> src="<<FUNC(''$body_image'',''panties'')>>"></a></center></TD><TD><center><a href="exec:gt ''shoes'', ''view_shoe_list'', ''wardrobe''"><img Height = <<ward_img_hgt>> src="<<FUNC(''$body_image'', ''shoes'')>>"></a></center></TD><TD><center>'
- if bag = 1:
- '<a href="exec:gt ''purses'', ''view_purse_list''"><img Height = <<ward_img_hgt>> src="<<FUNC(''$purse_image'', $currentpursetype, currentpursenumber)>>"></a>'
- else
- '<a href="exec:gt ''purses'', ''view_purse_list''"><img Height = <<ward_img_hgt>> src="images/pc/noitem.png"></a>'
- end
- '</center></TD>'
- '<TR><TD><center>'
- if $pantyworntype ! 'none':
- '<a href="exec:gs ''panties'', ''remove'' & gt ''wardrobe'', ''start''">Remove</a>'
- else
- 'Remove'
- end
- '</center></TD><TD><center>'
- if $shoeworntype ! 'none':
- '<a href="exec:gs ''shoes'', ''strip'' & gt ''wardrobe'', ''start''">Remove</a>'
- else
- 'Remove'
- end
- '</center></TD><TD><center>'
- if bag = 1:
- '<a href="exec:gs ''purses'', ''remove'' & gt ''wardrobe'', ''start''">Remove</a>'
- else
- 'Remove'
- end
- '</center></TD>'
- '<TR><TD><TD><center>'
- if ($clothingworntype ! 'nude' and (defaultcoat > 0 or bag > 0)) or (defaultcoat > 0 and bag > 0):
- '<a href="exec:gs ''wardrobe'', ''removeall'' & gt ''wardrobe'', ''start''">Remove all items</a>'
- else
- 'Remove all items'
- end
- '</center></TD>'
- '</table></center>'
- act 'Close wardrobe': killvar '$wloc' & gt $loc, $metka
- act 'Strip all clothing':
- gs 'bras', 'remove'
- gs 'clothing', 'strip'
- gs 'panties', 'remove'
- gs 'shoes', 'strip'
- gt 'wardrobe', 'start'
- end
- act 'Set a default outfit': gt 'wardrobe', 'default_set'
- act 'Choose a default outfit': gt 'wardrobe', 'default'
- act 'Organise stored clothing': org_loc = 1 & gt 'clothing', 'view_clothing_list', 'wardrobe'
- act 'Set image size for this view':
- ward_img_hgt = input("Enter height in pixels you want for images on this page <br>(Default 150, min 50, max 500)")
- if ward_img_hgt < 50:
- ward_img_hgt = 50
- elseif ward_img_hgt > 500:
- ward_img_hgt = 500
- end
- gt 'wardrobe', 'start'
- end
- end
- if $ARGS[0] = 'removeall':
- gs 'bras', 'remove'
- gs 'clothing', 'strip'
- gs 'panties', 'remove'
- gs 'shoes', 'strip'
- gs 'purses', 'remove'
- defaultcoat = 0
- end
- !!---------------------------Oufit stuff----------------------------------
- if $ARGS[0] = 'default':
- gs 'stat'
- 'Default sports outfit <a href="exec:gs ''wardrobe'', ''sports_entry_wear''">Wear this default outfit</a>'
-
- if ARRSIZE('defclothingnumber') > 0:
- i = 0
- :loopdefclothing
- '<<$def_clothing_name[i]>> <a href="exec:gs ''wardrobe'', ''default_entry_wear'', <<i>>">Wear this default outfit</a> <a href="exec:gs ''wardrobe'', ''default_entry_delete'', <<i>>">Delete this default outfit</a>'
- i += 1
- if i < ARRSIZE('defclothingnumber'):jump 'loopdefclothing'
- end
- *nl
- 'Note: When selecting an outfit you will see the bonus for your shoes applied, this will be removed when you leave and only added when outside.'
- act 'Return': gt 'wardrobe', 'start'
- end
- if $ARGS[0] = 'default_entry_wear':
- default_entry = ARGS[1]
- gs 'clothing_attributes', $defclothingtype[default_entry], defclothingnumber[default_entry]
- gs 'clothing', 'wear', $defclothingtype[default_entry], defclothingnumber[default_entry]
- if dyneval('RESULT = <<$defbratype[default_entry]>>_bras[<<defbranumber[default_entry]>>]') = 0: $defbratype[default_entry] = 'none' & defbranumber[default_entry] = 0
- gs 'bras', 'wear', $defbratype[default_entry], defbranumber[default_entry]
- if dyneval('RESULT = <<$defpantytype[default_entry]>>_panties[<<defpantynumber[default_entry]>>]') = 0: $defpantytype[default_entry] = 'none' & defpantynumber[default_entry] = 0
- gs 'panties', 'wear', $defpantytype[default_entry], defpantynumber[default_entry]
- if dyneval('RESULT = s<<$defshoetype[default_entry]>>[<<defshoenumber[default_entry]>>]') = 0: $defshoetype[default_entry] = 'none' & defshoenumber[default_entry] = 0
- gs 'shoes', 'wear', $defshoetype[default_entry], defshoenumber[default_entry]
- if dyneval('RESULT = <<$defpursetype[default_entry]>>_purses[<<defpursenumber[default_entry]>>]') = 0:
- $defpursetype[default_entry] = 'none' & defpursenumber[default_entry]
- end
- $currentpursetype = $defpursetype[default_entry]
- currentpursenumber = defpursenumber[default_entry]
- if $currentpursetype = 'none':
- bag = 0
- else
- bag = 1
- end
- if dyneval('RESULT = coat[<<defcoat[default_entry]>>]') = 0: defcoat[default_entry] = 0
- defaultcoat = defcoat[default_entry]
- !! default school girl uniform is always allowed to be worn if still in school
- if StoryLine = 1 and SchoolAtestat = 0 and SchoolBlock = 0 and $defclothingtype[default_entry] = 'school' and defclothingnumber[default_entry] = 6:
- cls
- '<center><video autoplay loop src="images/locations/city/citycenter/photo/dress.mp4"></video></center>'
- 'Your put on your <<$def_clothing_name[default_entry]>> outfit without any problems.'
- act 'Return to wardrobe':
- killvar 'default_entry'
- gs 'stat'
- gt 'wardrobe', 'start'
- end
- !! do not own this clothing anymore
- elseif dyneval('RESULT = <<$defclothingtype[default_entry]>>[<<defclothingnumber[default_entry]>>]') = 0:
- cls
- '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/strip/strip2.jpg"></center>'
- 'As you go to pull your <<$def_clothing_name[default_entry]>> outfit out of your wardrobe you remember you don''t own that piece of clothing anymore. Maybe you should buy it again? Guess you will have to find something else to wear.'
- act 'Return to wardrobe':
- gs 'clothing', 'strip'
- killvar 'default_entry'
- gs 'stat'
- gt 'wardrobe', 'start'
- end
- !! strength of clothing is less than or equal to 0
- elseif dyneval('RESULT = <<$defclothingtype[default_entry]>>H[<<defclothingnumber[default_entry]>>]') <= 0:
- cls
- '<center><video autoplay loop src="images/characters/pavlovsk/school/girl/vicky/event/vika_game_strip16.mp4"></video></center>'
- 'Your <<$def_clothing_name[default_entry]>> outfit has worn out and can''t be used anymore. Guess you will have to find something else to wear.'
- act 'Strip out of worn out clothing':
- gs 'clothing', 'strip'
- killvar 'default_entry'
- gs 'stat'
- gt 'wardrobe', 'start'
- end
- !! clothing exhibition is greater than player exhibition
- elseif CloInhibit > pcs_inhib:
- cls
- '<center><video autoplay loop src="images/locations/pavlovsk/trainstation/bimbo.strip6.mp4"></video></center>'
- 'You don''t feel daring enough to wear your <<$def_clothing_name[default_entry]>> outfit. Maybe you will be confident enough in the future? Guess you will have to find something else to wear.'
- act 'Strip out of revealing clothing':
- gs 'clothing', 'strip'
- killvar 'default_entry'
- gs 'stat'
- gt 'wardrobe', 'start'
- end
- !! not exercise clothing, not coat, and not loose fitting
- elseif $defclothingtype[default_entry] ! 'exercise' and $defclothingtype[default_entry] ! 'coat' and CloStyle ! 5:
- !! check for if the hipsize is too far from your hipsize
- dynamic 'RESULT = <<$defclothingtype[default_entry]>>B[<<defclothingnumber[default_entry]>>]'
- if RESULT < pcs_hips - 8 or RESULT > pcs_hips + 8:
- cls
- iif(RESULT < pcs_hips - 8,'<center><video autoplay loop src="images/locations/pavlovsk/clinic/therapist/dressup.mp4"></video></center>','<center><video autoplay loop src="images/locations/pavlovsk/clinic/therapist/stripping1.mp4"></video></center>')
- 'As you put on your <<$def_clothing_name[default_entry]>> outfit you notice it doesn''t fit correctly anymore. It''s ' + iif(RESULT < pcs_hips - 8,'unbearably tight and uncomfortable to wear.','extremely loose and won''t stay in place no matter how hard you try.') + ' You must have ' + iif(RESULT < pcs_hips - 8,'gained','lost') + ' some weight since this was purchased or last tailored. You will have to get this clothing resized before you can wear it again.'
- act 'Strip out of ill-fitting clothing':
- gs 'clothing', 'strip'
- killvar 'default_entry'
- gs 'stat'
- gt 'wardrobe', 'start'
- end
- !! clothing ok to wear after passing hip check
- else
- cls
- '<center><video autoplay loop src="images/locations/city/citycenter/photo/dress.mp4"></video></center>'
- 'Your put on your <<$def_clothing_name[default_entry]>> outfit without any problems.'
- act 'Return to wardrobe':
- killvar 'default_entry'
- gs 'stat'
- gt 'wardrobe', 'start'
- end
- end
- !! clothing ok to wear without needing hip check and passing all other checks
- else
- cls
- '<center><video autoplay loop src="images/locations/city/citycenter/photo/dress.mp4"></video></center>'
- 'Your put on your <<$def_clothing_name[default_entry]>> outfit without any problems.'
- act 'Return to wardrobe':
- killvar 'default_entry'
- gs 'stat'
- gt 'wardrobe', 'start'
- end
- end
- end
- if $ARGS[0] = 'default_set':
- gs 'stat'
- 'sports outfit <a href="exec:gs ''wardrobe'', ''sports_entry_set'', <<i>>">Overwrite this</a>'
- if ARRSIZE('defclothingnumber') ! 0:
- i = 0
- :loopdefclothing_set
- '<<$def_clothing_name[i]>> <a href="exec:gs ''wardrobe'', ''default_entry_set'', <<i>>">Overwrite this</a>'
- i += 1
- if i < ARRSIZE('defclothingnumber'):jump 'loopdefclothing_set'
- end
- act 'Add as new default': gt 'wardrobe', 'default_entry_set', ARRSIZE('defclothingnumber')
- act 'Return': gt 'wardrobe', 'start'
- end
- if $ARGS[0] = 'default_entry_set':
- gs 'stat'
- i = ARGS[1]
- $defclothingtype[i] = $clothingworntype
- defclothingnumber[i] = clothingwornnumber
- $defbratype[i] = $braworntype
- defbranumber[i] = brawornnumber
- $defpantytype[i] = $pantyworntype
- defpantynumber[i] = pantywornnumber
- $defshoetype[i] = $shoeworntype
- defshoenumber[i] = shoewornnumber
- $defpursetype[i] = $currentpursetype
- defpursenumber[i] = currentpursenumber
- defcoat[i] = defaultcoat
- $def_clothing_name[i] = input ('Enter name for for this outfit (Leave blank for default)')
- if $def_clothing_name[i] = '': $def_clothing_name[i] = 'default <<i>>'
- gt 'wardrobe', 'default_set'
- end
- if $ARGS[0] = 'default_entry_delete':
- gs 'stat'
- i = ARGS[1]
- killvar 'defclothingtype', i
- killvar 'defclothingnumber', i
- killvar 'defbratype', i
- killvar 'defbranumber', i
- killvar 'defpantytype', i
- killvar 'defpantynumber', i
- killvar 'defshoetype', i
- killvar 'defshoenumber', i
- killvar 'defpursetype', i
- killvar 'defpursenumber', i
- killvar 'defcoat', i
- killvar 'def_clothing_name', i
- gt 'wardrobe', 'default_set'
- end
- !!-- sports outfit stuff
- if $ARGS[0] = 'sports_entry_wear':
- gs 'wardrobe', 'prev_entry_set'
- gs 'clothing_attributes', 'exercise', sportsclothingnumber
- gs 'clothing', 'wear', 'exercise', sportsclothingnumber
- if dyneval('RESULT = <<$sportsbratype>>_bras[<<sportsbranumber>>]') = 0: $sportsbratype = 'none' & sportsbranumber = 0
- gs 'bras', 'wear', $sportsbratype, sportsbranumber
- if dyneval('RESULT = <<$sportspantytype>>_panties[<<sportspantynumber>>]') = 0: $sportspantytype = 'none' & sportspantynumber = 0
- gs 'panties', 'wear', $sportspantytype, sportspantynumber
- gs 'shoes', 'wear', 'trainers', sportsshoenumber
- if $sportspursetype = '' AND sportspursenumber = 0:
- $sportspursetype = 'none' & sportspursenumber = 0
- elseif dyneval('RESULT = <<$sportspursetype>>_purses[<<sportspursenumber>>]') = 0:
- $sportspursetype = 'none' & sportspursenumber = 0
- end
- $currentpursetype = $sportspursetype
- currentpursenumber = sportspursenumber
- if $currentpursetype = 'none':
- bag = 0
- else
- bag = 1
- end
- if dyneval('RESULT = coat[<<sportscoat>>]') = 0: sportscoat = 0
- defaultcoat = sportscoat
- minut += 2
- gs 'stat'
- !! do not own this clothing anymore
- if dyneval('RESULT = exercise[<<sportsclothingnumber>>]') = 0:
- cls
- '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/boy/niko/nikoev/school/strip/strip2.jpg"></center>'
- 'As you go to pull your sports outfit out of your wardrobe you remember you don''t own that piece of clothing anymore. Maybe you should buy it again? Guess you will have to find something else to wear.'
- gs 'wardrobe', 'prev_entry_set'
- !! strength of clothing is less than or equal to 0
- elseif dyneval('RESULT = exerciseH[<<sportsclothingnumber>>]') <= 0:
- cls
- '<center><video autoplay loop src="images/characters/pavlovsk/school/girl/vicky/event/vika_game_strip16.mp4"></video></center>'
- 'Your sports outfit has worn out and can''t be used anymore. Guess you will have to find something else to wear.'
- gs 'wardrobe', 'prev_entry_set'
- !! clothing exhibition is greater than player exhibition
- elseif CloInhibit > pcs_inhib:
- cls
- '<center><video autoplay loop src="images/locations/pavlovsk/trainstation/bimbo.strip6.mp4"></video></center>'
- 'You don''t feel daring enough to wear your sports outfit. Maybe you will be confident enough in the future? Guess you will have to find something else to wear.'
- gs 'wardrobe', 'prev_entry_set'
- !! clothing ok to wear without needing hip check and passing all other checks
- else
- cls
- '<center><video autoplay loop src="images/locations/city/citycenter/photo/dress.mp4"></video></center>'
- 'You put on your sports outfit without any problems.'
- end
- act 'Return':
- if $wloc = 'wardrobe':
- gt 'wardrobe', 'start'
- elseif $wloc = 'workout':
- gt 'exercise', 'workout'
- else
- gt $loc, $metka
- end
- end
- end
- if $ARGS[0] = 'sports_entry_set':
- if $clothingworntype ! 'exercise' OR $shoeworntype ! 'trainers':
- MSG 'The sports outfit needs to include exercise clothes and training shoes'
- act 'Return to wardrobe': gt 'wardrobe', 'start'
- else
- gs 'stat'
- sportsclothingnumber = clothingwornnumber
- $sportsbratype = $braworntype
- sportsbranumber = brawornnumber
- $sportspantytype = $pantyworntype
- sportspantynumber = pantywornnumber
- sportsshoenumber = shoewornnumber
- $sportspursetype = $currentpursetype
- sportspursenumber = currentpursenumber
- sportscoat = defaultcoat
- gt 'wardrobe', 'default_set'
- end
- end
- if $ARGS[0] = 'prev_entry_set':
- $prevsportsclothingtype = $clothingworntype
- prevsportsclothingnumber = clothingwornnumber
- $prevsportsbratype = $braworntype
- prevsportsbranumber = brawornnumber
- $prevsportspantytype = $pantyworntype
- prevsportspantynumber = pantywornnumber
- $prevsportsshoetype = $shoeworntype
- prevsportsshoenumber = shoewornnumber
- $prevsportspursetype = $currentpursetype
- prevsportspursenumber = currentpursenumber
- prevsportscoat = defaultcoat
- end
- if $ARGS[0] = 'prev_entry_wear':
- cls
- '<center><video autoplay loop src="images/locations/city/citycenter/photo/dress.mp4"></video></center>'
- 'You take off your sports outfit and put on the previous clothes'
- $clothingworntype = $prevsportsclothingtype
- clothingwornnumber = prevsportsclothingnumber
- $braworntype = $prevsportsbratype
- brawornnumber = prevsportsbranumber
- $pantyworntype = $prevsportspantytype
- pantywornnumber = prevsportspantynumber
- $shoeworntype = $prevsportsshoetype
- shoewornnumber = prevsportsshoenumber
- $currentpursetype = $prevsportspursetype
- currentpursenumber = prevsportspursenumber
- defaultcoat = prevsportscoat
- minut += 2
- gs 'stat'
- act 'Return':
- if $wloc = 'wardrobe':
- gt 'wardrobe', 'start'
- elseif $wloc = 'workout':
- gt 'exercise', 'workout'
- else
- gt $loc, $metka
- end
- end
- end
- if $ARGS[0] = 'sports_outfit_option':
- if $ARGS[1] = 'workout':
- $wloc = 'workout'
- else
- killvar '$wloc'
- end
- if $clothingworntype = 'exercise' AND $shoeworntype = 'trainers' AND sportsclothingnumber = clothingwornnumber AND $sportsbratype = $braworntype AND sportsbranumber = brawornnumber AND $sportspantytype = $pantyworntype AND sportspantynumber = pantywornnumber AND sportsshoenumber = shoewornnumber:
- act 'Wear previous outfit': gs 'wardrobe', 'prev_entry_wear'
- else
- act 'Wear sports outfit': gs 'wardrobe', 'sports_entry_wear'
- end
- end
- --- wardrobe ---------------------------------
|