# shop_flamingos
!!2022/03/12
if $ARGS[0] = 'start':
killvar 'clothingfilter'
gs 'shortgs', 'setloc', 'shop_flamingos', 'start'
$location_type = 'public_indoors'
menu_off = 0
gs 'stat'
gs 'themes', 'indoors'
'
Flamingo''s'
'> src="images/locations/city/island/flamingos/shop.jpg">'
*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 'pushkin_sq'
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':
gs 'shortgs', 'setloc', 'shop_flamingos', 'dresses'
menu_off = 0
gs 'stat'
'Viewing Flamingo''s dresses'
*nl
act 'Return': minut += 1 & gt 'shop_flamingos', 'start'
gs 'clothing_QV', 'shop_filter_header'
gs 'clothing', 'totals', 'flamingos_dress'
!!To filter just this set
clo_i = 0
:loopflamingos_dress_filter
i = 1 + Clothingstock mod 3
:loopflamingos_dress
if flamingos_dress[i] = 0:
gs 'clothing_attributes', 'flamingos_dress', i
gs 'clothing_QV', 'shop_filter'
!!sort by filter
if (clothingfilter['quality'] = 0 and CloQuality = clo_i) or (clothingfilter['inhibition'] = 0 and CloInhibit = clo_i) or clothingfilter['number'] = 0:
if clothingfilter['inc'] = 1 and clothingfilter['only'] = 1: *p ''
end
end
i += 3
if i <= total: jump 'loopflamingos_dress'
clo_i += 1
if clothingfilter['quality'] = 0 and clo_i <= 7 or clothingfilter['inhibition'] = 0 and clo_i <= 50:
jump 'loopflamingos_dress_filter'
end
end
if $ARGS[0] = 'flamingos_dress':
if flamingos_dress[i] ! 0:
msg 'You already own this dress.'
gt 'shop_flamingos', 'dresses'
end
gt 'clothing', 'view_clothing_item', 'flamingos_dress', i, 3000, 'shop'
end
if $ARGS[0] = 'clothes':
gs 'shortgs', 'setloc', 'shop_flamingos', 'clothes'
menu_off = 0
gs 'stat'
'Viewing Flamingo''s outfits'
*nl
gs 'clothing_QV', 'shop_filter_header'
gs 'clothing', 'totals', 'flamingos_outfits'
act 'Return': minut += 1 & gt 'shop_flamingos', 'start'
!!To filter just this set
clo_i = 0
:loopflamingos_filter
i = 1 + (Clothingstock / 3) mod 2
:loopflamingos
if flamingos_outfits[i] = 0:
gs 'clothing_attributes', 'flamingos_outfits', i
gs 'clothing_QV', 'shop_filter'
!!sort by filter
if (clothingfilter['quality'] = 0 and CloQuality = clo_i) or (clothingfilter['inhibition'] = 0 and CloInhibit = clo_i) or clothingfilter['number'] = 0:
if clothingfilter['inc'] = 1 and clothingfilter['only'] = 1: *p ''
end
end
i += 2
if i <= total:jump 'loopflamingos'
clo_i += 1
if clothingfilter['quality'] = 0 and clo_i <= 7 or clothingfilter['inhibition'] = 0 and clo_i <= 50:
jump 'loopflamingos_filter'
end
end
if $ARGS[0] = 'flamingos_outfits':
if flamingos_outfits[i] ! 0:
msg 'You already own this outfit.'
gt 'shop_flamingos', 'clothes'
end
gt 'clothing', 'view_clothing_item', 'flamingos_outfits', i, 3000, 'shop'
end
if $ARGS[0] = 'purses':
gs 'shortgs', 'setloc', 'shop_flamingos', 'purses'
menu_off = 0
gs 'stat'
act 'Return': minut += 5 & gt 'shop_flamingos', 'start'
gs 'purses', 'totals', 'flamingos_purses'
i = 1
:loopflamingos_purses
if flamingos_purses[i] = 0: *p ''
i += 1
if i <= total: jump 'loopflamingos_purses'
end
if $ARGS[0] = 'purses2': gt 'purses', 'view_purse_item', 'shop', 'flamingos', i, 2000
--- shop_flamingos ---------------------------------