123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- # NewCloShop
- $location_type = 'event'
- if $ARGS[0] = 'start':
- $metka = 'start'
- $loc = 'NewCloShop'
- $menu_loc = 'NewCloShop'
- $menu_arg = 'start'
- menu_off = 0
- gs 'stat'
- gs 'themes', 'indoors'
- '<center><b><font color="maroon">Fashionista</font></b></center>'
- '<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/fashionista/fashinista.jpg"</center>'
- 'This shop features many big name brands and designer clothing. Even their bags look cool.'
-
- act 'Leave':
- minut += 3
- view
- gt 'torgcentr'
- end
-
- act 'View clothing': minut += 5 & gt 'NewCloShop', 'clothes'
- act 'View panties': minut += 5 & gt 'NewCloShop', 'panties'
- act 'View bras': minut += 5 & gt 'NewCloShop', 'bras'
- act 'View purses': minut += 5 & gt 'NewCloShop', 'purses'
- end
- if $ARGS[0] = 'clothes':
- $metka = 'clothes'
- $loc = 'NewCloShop'
- menu_off = 1
- *clr & cla
- gs'stat'
- '<center><b><font color="maroon">Viewing Fashionista clothing</font></b></center>'
- *nl
- gs 'clothing_QV', 'shop_header'
- act 'Return':
- cla
- minut += 1
- gt 'NewCloShop', 'start'
- end
-
- i = Clothingstock +1
- if Clothingstock - 12 > 0:i -= 12
- :loopexpensive
- if expensive[i] = 0:
- gs 'clothing_attributes', 'expensive', 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 ''NewCloShop'', ''shmotmag''"><img src="images/pc/clothing/3expensive/<<i>>.jpg" height="250" /></a>'
- end
- i += 12
- if i <= 425:jump 'loopexpensive'
- end
- if $ARGS[0] = 'shmotmag':
- cla
-
- if expensive[i] ! 0:
- msg 'You already own these clothes.'
- gt 'NewCloShop', 'clothes'
- end
- gt 'clothing', 'view_clothing_item', 'shop', 'expensive',i, 8000
- end
- if $ARGS[0] = 'panties':
- $metka = 'panties'
- $loc = 'NewCloShop'
- menu_off = 1
- *clr & cla
- gs'stat'
- act 'Return':
- cla
- minut += 1
- gt 'NewCloShop', 'start'
- end
- i = 1
- :loopfashionista_panties
- if fashionista_panties[i] = 0:*p '<a href="exec: i = <<i>> & gt ''NewCloShop'', ''panties2''"><img src="images/pc/panties/fashionista/<<i>>.jpg" height="150" /></a> '
- i += 1
- if i <= 75:jump 'loopfashionista_panties'
- end
- if $ARGS[0] = 'panties2':
- cla
-
- if fashionista_panties[i] ! 0:
- msg 'You already own these panties.'
- gt 'NewCloShop', 'panties'
- end
- gt 'panties', 'view_panty_item', 'shop', 'fashionista',i, 750
- end
- if $ARGS[0] = 'bras':
- $metka = 'bras'
- $loc = 'NewCloShop'
- menu_off = 1
- *clr & cla
- gs'stat'
- act 'Return':
- cla
- minut += 1
- gt 'NewCloShop', 'start'
- end
- i = 1
- :loopfashionista_bras
- if fashionista_bras[i] = 0:*p '<a href="exec: i = <<i>> & gt ''NewCloShop'', ''bras2''"><img src="images/pc/bras/fashionista/<<i>>.jpg" height="150" /></a> '
- i += 1
- if i <= 38:jump 'loopfashionista_bras'
- end
- if $ARGS[0] = 'bras2':
- cla
-
- if fashionista_bras[i] ! 0:
- msg 'You already own this bra.'
- gt 'NewCloShop', 'bras'
- end
- gt 'bras', 'view_bra_item', 'shop', 'fashionista',i, 750
- end
- if $ARGS[0] = 'purses':
- $metka = 'purses'
- $loc = 'NewCloShop'
- menu_off = 1
- *clr & cla
- gs'stat'
- act 'Return':
- cla
- minut += 1
- gt 'NewCloShop', 'start'
- end
- i = 1
- :loopfashionista_purses
- if fashionista_purse[i] = 0:*p '<a href="exec: i = <<i>> & gt ''NewCloShop'', ''purses2''"><img src="images/pc/purses/fashionista/<<i>>.jpg" height="150" /></a> '
- i += 1
- if i <= 15:jump 'loopfashionista_purses'
- end
- if $ARGS[0] = 'purses2': gt 'purses', 'view_purse_item', 'shop', 'fashionista',i, 3000
- --- NewCloShop ---------------------------------
|