123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- # exhibitionistshop
- if $ARGS[0] = 'start':
- CLOSE ALL
- $loc = 'exhibitionistshop'
- $metka = 'start'
- $location_type = 'public_indoors'
- $menu_loc = 'exhibitionistshop'
- $menu_arg = 'start'
- menu_off = 0
- cla & *clr
- if exhibitionQW = 3: exhibitionQW = 4
- gs 'stat'
- gs 'themes', 'indoors'
- '<center><b><font color="maroon">Expression of You</font></b></center>'
- '<center><img <<$set_imgh>> src="images/locations/oldtown/exhibitshop/shop.jpg"></center>'
- 'A shop in the most modern style who''s clothing is all very revealing and not nearly as classy as the store itself.'
- act 'Leave':
- minut += 5
- gt 'liames'
- end
- if hour >= 18:
- *nl
- 'The shop is closing and you have to leave.'
- else
- act 'View clothing':
- minut += 5
- gt 'exhibitionistshop', 'clo'
- end
- act 'View panties':
- minut += 5
- gt 'exhibitionistshop', 'panties'
- end
- act 'View bras':
- minut += 5
- gt 'exhibitionistshop', 'bras'
- end
- end
- end
- if $ARGS[0] = 'clo':
- $metka = 'clo'
- $loc = 'exhibitionistshop'
- cls
- gs'stat'
- '<center><b><font color="maroon">Exhibitionist clothing</font></b></center>'
- *nl
- gs 'clothing_QV', 'shop_header'
- act 'Return':
- cla
- minut += 1
- gt 'exhibitionistshop', 'start'
- end
- if Clothingstock >= 18:
- i = 1
- elseif Clothingstock >= 12:
- i = 2
- elseif Clothingstock >= 6:
- i = 3
- else
- i = 4
- end
- :loopexhibit
- if exhibit[i] = 0:
- gs 'clothing_attributes', 'exhibit', i
- gs 'clothing_QV', 'shop_filter'
-
- if clothingfilter_risk = 1 and clothingfilter_pandb = 1 and clothingfilter_norm2 = 1: *p '<a href="exec: i = <<i>> & gt ''exhibitionistshop'', ''exhibit''"><img <<$set_imgh>> src="images/pc/clothing/9exhibit/<<i>>.jpg" height="250" /></a>'
- end
- i += 4
- if i <= 57:jump 'loopexhibit'
- end
- if $ARGS[0] = 'exhibit':
- cla
-
- if exhibit[i] ! 0:
- msg 'You already own these clothes.'
- gt 'exhibitionistshop', 'clo'
- end
- gt 'clothing', 'view_clothing_item', 'shop', 'exhibit',i, 1000
- end
- if $ARGS[0] = 'panties':
- $metka = 'panties'
- $loc = 'exhibitionistshop'
- cls
- gs'stat'
- act 'Return':
- cla
- minut += 1
- gt 'exhibitionistshop', 'start'
- end
- i = 2
- :loopexhibitionist_panties
- if exhibitionist_panties[i] = 0:*p '<a href="exec: i = <<i>> & gt ''exhibitionistshop'', ''panties2''"><img src="images/pc/panties/exhibitionist/<<i>>.jpg" height="150" /></a> '
- i += 1
- if i <= 59:jump 'loopexhibitionist_panties'
- end
- if $ARGS[0] = 'panties2':
- cla
-
- if exhibitionist_panties[i] ! 0:
- msg 'You already own these panties.'
- gt 'exhibitionistshop', 'panties'
- end
- gt 'panties', 'view_panty_item', 'shop', 'exhibitionist',i, 600
- end
- if $ARGS[0] = 'bras':
- $metka = 'bras'
- $loc = 'exhibitionistshop'
- cls
- gs'stat'
- act 'Return':
- cla
- minut += 1
- gt 'exhibitionistshop', 'start'
- end
- i = 2
- :loopexhibitionist_bras
- if exhibitionist_bras[i] = 0:*p '<a href="exec: i = <<i>> & gt ''exhibitionistshop'', ''bras2''"><img src="images/pc/bras/exhibitionist/<<i>>.jpg" height="150" /></a> '
- i += 1
- if i <= 37:jump 'loopexhibitionist_bras'
- end
- if $ARGS[0] = 'bras2':
- cla
-
- if exhibitionist_bras[i] ! 0:
- msg 'You already own these bras.'
- gt 'exhibitionistshop', 'bras'
- end
- gt 'bras', 'view_bra_item', 'shop', 'exhibitionist',i, 600
- end
- --- exhibitionistshop ---------------------------------
|