123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- # shop_flamingos
- if $ARGS[0] = 'start':
- $loc_arg = $ARGS[0]
- $loc = 'shop_flamingos'
- $location_type = 'public_indoors'
- $menu_loc = 'shop_flamingos'
- $menu_arg = 'start'
- menu_off = 0
- *clr & cla
- mag = 1
- gs 'stat'
- gs 'themes', 'indoors'
- '<center><b><font color="maroon">Flamingo''s</font></b></center>'
- '<center><img <<$set_imgh>> src="images/locations/city/island/flamingos/shop.jpg"></center>'
- *nl
- 'Flamingos is trendy and modern while still keeping the prices low enough for the large student population on the Island. It mimics the latest fashions for young adults but cuts costs on material and manufacturing. This suits the clients who are likely to grow bored of an outfit before it falls apart and that''s why it''s always busy.'
- act 'Leave the flamingos': minut += 3 & gt 'liames'
-
- act 'View dresses': minut += 5 & gt 'shop_flamingos', 'dresses'
- act 'View other clothing': minut += 5 & gt 'shop_flamingos', 'clothes'
- act 'View purses': minut += 5 & gt 'shop_flamingos', 'purses'
- end
- if $ARGS[0] = 'dresses':
- $loc_arg = 'dresses'
- $loc = 'shop_flamingos'
- $menu_loc = 'shop_flamingos'
- $menu_arg = 'dresses'
- menu_off = 0
- *clr & cla
- gs'stat'
- '<center><b><font color="maroon">Viewing Flamingo''s dresses</font></b></center>'
- *nl
- gs 'clothing_QV', 'shop_header'
- act 'Return': minut += 1 & gt 'shop_flamingos', 'start'
- clothingfilter['qualitycheck'] = 7
- :loopquality_dress
- if Clothingstock > 11:
- i = 1
- else
- i = 2
- end
- :loopflamingos_dress
- if flamingos_dress[i] = 0:
- gs 'clothing_attributes', 'flamingos_dress', i
- gs 'clothing_QV', 'shop_filter'
- if clothingfilter['quality'] = 0 or clothingfilter['qualitycheck'] = CloQuality:
-
- if clothingfilter_risk = 1 and clothingfilter_pandb = 1 and clothingfilter_norm2 = 1: *p '<a href="exec: i = <<i>> & gt ''shop_flamingos'', ''flamingos_dress''"><img src="images/pc/items/flamingos/dress/<<i>>.jpg" height="250" /></a>'
- end
- end
- i += 2
- if i <= 90:jump 'loopflamingos_dress'
- if clothingfilter['quality'] = 1 and clothingfilter['qualitycheck'] > 0: clothingfilter['qualitycheck'] -=1 & jump 'loopquality_dress'
- end
- if $ARGS[0] = 'flamingos_dress':
- cla
- menu_off = 1
- if flamingos_dress[i] ! 0:
- msg 'You already own this dress.'
- gt 'shop_flamingos', 'dresses'
- end
- gt 'clothing', 'view_clothing_item', 'shop', 'flamingos_dress',i, 3000
- end
- if $ARGS[0] = 'clothes':
- $loc_arg = 'clothes'
- $loc = 'shop_flamingos'
- $menu_loc = 'shop_flamingos'
- $menu_arg = 'clothes'
- menu_off = 0
- *clr & cla
- gs'stat'
- '<center><b><font color="maroon">Viewing Flamingo''s outfits</font></b></center>'
- *nl
- gs 'clothing_QV', 'shop_header'
- act 'Return': minut += 1 & gt 'shop_flamingos', 'start'
- clothingfilter['qualitycheck'] = 7
- :loopquality
- if Clothingstock > 11:
- i = 1
- else
- i = 2
- end
- :loopflamingos
- if flamingos_outfits[i] = 0:
- gs 'clothing_attributes', 'flamingos_outfits', i
- gs 'clothing_QV', 'shop_filter'
- if clothingfilter['quality'] = 0 or clothingfilter['qualitycheck'] = CloQuality:
-
- if clothingfilter_risk = 1 and clothingfilter_pandb = 1 and clothingfilter_norm2 = 1: *p '<a href="exec: i = <<i>> & gt ''shop_flamingos'', ''flamingos_outfits''"><img src="images/pc/items/flamingos/outfits/<<i>>.jpg" height="250" /></a>'
- end
- end
- i += 2
- if i <= 50:jump 'loopflamingos'
- if clothingfilter['quality'] = 1 and clothingfilter['qualitycheck'] > 0: clothingfilter['qualitycheck'] -=1 & jump 'loopquality'
- end
- if $ARGS[0] = 'flamingos_outfits':
- cla
- menu_off = 1
- if flamingos_outfits[i] ! 0:
- msg 'You already own this outfit.'
- gt 'shop_flamingos', 'clothes'
- end
- gt 'clothing', 'view_clothing_item', 'shop', 'flamingos_outfits',i, 3000
- end
- if $ARGS[0] = 'purses':
- $loc_arg = 'purses'
- $loc = 'shop_flamingos'
- $menu_arg = 'purses'
- $menu_loc = 'shop_flamingos'
- menu_off = 0
- *clr & cla
- gs'stat'
- act 'Return':
- cla
- minut += 5
- gt 'shop_flamingos', 'start'
- end
- i = 1
- :loopflamingos_purses
- if flamingos_purses[i] = 0:*p '<a href="exec: i = <<i>> & gt ''shop_flamingos'', ''purses2''"><img src="images/pc/items/flamingos/purses/<<i>>.jpg" height="250" /></a>'
- i += 1
- if i <= 20:jump 'loopflamingos_purses'
- end
- if $ARGS[0] = 'purses2': gt 'purses', 'view_purse_item', 'shop', 'flamingos',i, 2000
- --- shop_flamingos ---------------------------------
|