1
0

shop_fancy_pancy.qsrc 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # shop_fancy_pancy
  2. !!2021/05/12
  3. if $ARGS[0] = 'start':
  4. killvar 'clothingfilter'
  5. gs 'shortgs', 'setloc', 'shop_fancy_pancy', 'start'
  6. $location_type = 'public_indoors'
  7. menu_off = 0
  8. gs 'stat'
  9. gs 'themes', 'indoors'
  10. '<center><b><font color="maroon">Fancy Pancy</font></b></center>'
  11. '<center><img <<$set_imgh>> src="images/locations/pushkin/fancypancy/shop.jpg"></center>'
  12. *nl
  13. 'This small boutique shop looks more like a dressing room at the burlesque club nearby. Satin, leather, ruffles and glamour make it clear this is not a place to buy a practical outfit. It is the only place to buy outfits suitable for the burlesque club or perhaps spice up things in the bedroom.'
  14. *nl
  15. 'The boutique sells designer winter coats, burlesque clothing, beautiful shoes and exquisite handbags.'
  16. act 'Leave the boutique': minut += 3 & gt 'pushkin_sq'
  17. act 'View clothing': minut += 5 & gt 'shop_fancy_pancy', 'clothes'
  18. end
  19. if $ARGS[0] = 'clothes':
  20. gs 'shortgs', 'setloc', 'shop_fancy_pancy', 'clothes'
  21. menu_off = 0
  22. gs 'stat'
  23. '<center><b><font color="maroon">Viewing Fancy Pancy outfits</font></b></center>'
  24. *nl
  25. act 'Return': minut += 1 & gt 'shop_fancy_pancy', 'start'
  26. gs 'clothing_QV', 'shop_filter_header'
  27. gs 'clothing', 'totals', 'fancy_burlesque'
  28. !!To filter just this set
  29. clo_i = 0
  30. :loopfancy_burlesque_filter
  31. i = 1 + Clothingstock mod 2
  32. :loopfancy_burlesque
  33. if fancy_burlesque[i] = 0:
  34. gs 'clothing_attributes', 'fancy_burlesque', i
  35. gs 'clothing_QV', 'shop_filter'
  36. !!sort by filter
  37. if (clothingfilter['quality'] = 0 and CloQuality = clo_i) or (clothingfilter['inhibition'] = 0 and CloInhibit = clo_i) or clothingfilter['number'] = 0:
  38. if clothingfilter['inc'] = 1 and clothingfilter['only'] = 1: *p '<a href="exec: i = <<i>> & gt ''shop_fancy_pancy'', ''fancy_burlesque''"><img src="images/pc/items/fancy/burlesque/<<i>>.jpg" height="250" /></a>'
  39. end
  40. end
  41. i += 2
  42. if i <= total: jump 'loopfancy_burlesque'
  43. clo_i += 1
  44. if clothingfilter['quality'] = 0 and clo_i <= 7 or clothingfilter['inhibition'] = 0 and clo_i <= 50:
  45. jump 'loopfancy_burlesque_filter'
  46. end
  47. end
  48. if $ARGS[0] = 'fancy_burlesque':
  49. if fancy_burlesque[i] ! 0:
  50. msg 'You already own these clothes.'
  51. gt 'shop_fancy_pancy', 'clothes'
  52. end
  53. gt 'clothing', 'view_clothing_item', 'fancy_burlesque', i, 20000, 'shop'
  54. end
  55. --- shop_fancy_pancy ---------------------------------