shop_fancy_pancy.qsrc 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. # shop_fancy_pancy
  2. !!2021/05/12
  3. if $ARGS[0] = 'start':
  4. killvar 'clothingfilter'
  5. $loc_arg = $ARGS[0]
  6. $loc = 'shop_fancy_pancy'
  7. $location_type = 'public_indoors'
  8. $menu_loc = 'shop_fancy_pancy'
  9. $menu_arg = 'start'
  10. menu_off = 0
  11. *clr & cla
  12. gs 'stat'
  13. gs 'themes', 'indoors'
  14. '<center><b><font color="maroon">Fancy Pancy</font></b></center>'
  15. '<center><img <<$set_imgh>> src="images/locations/pushkin/fancypancy/shop.jpg"></center>'
  16. *nl
  17. '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.'
  18. *nl
  19. 'The boutique sells designer winter coats, burlesque clothing, beautiful shoes and exquisite handbags.'
  20. act 'Leave the boutique': minut += 3 & gt 'pushkin_sq'
  21. act 'View clothing': minut += 5 & gt 'shop_fancy_pancy', 'clothes'
  22. end
  23. if $ARGS[0] = 'clothes':
  24. $loc_arg = 'clothes'
  25. $loc = 'shop_fancy_pancy'
  26. $menu_loc = 'shop_fancy_pancy'
  27. $menu_arg = 'clothes'
  28. menu_off = 0
  29. *clr & cla
  30. gs'stat'
  31. '<center><b><font color="maroon">Viewing Fancy Pancy outfits</font></b></center>'
  32. *nl
  33. gs 'clothing_QV', 'shop_filter_header'
  34. gs 'clothing', 'fancy_burlesque'
  35. act 'Return': minut += 1 & gt 'shop_fancy_pancy', 'start'
  36. !!To filter just this set
  37. clo_i = 0
  38. :loopfancy_burlesque_filter
  39. if Clothingstock > 11:
  40. i = 1
  41. else
  42. i = 2
  43. end
  44. :loopfancy_burlesque
  45. if fancy_burlesque[i] = 0:
  46. gs 'clothing_attributes', 'fancy_burlesque', i
  47. gs 'clothing_QV', 'shop_filter'
  48. !!sort by filter
  49. if (clothingfilter['quality'] = 0 and CloQuality = clo_i) or (clothingfilter['inhibition'] = 0 and CloInhibit = clo_i) or clothingfilter['number'] = 0:
  50. 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>'
  51. end
  52. end
  53. i += 2
  54. if i <= total:jump 'loopfancy_burlesque'
  55. clo_i += 1
  56. if clothingfilter['quality'] = 0 and clo_i <= 7:
  57. jump 'loopfancy_burlesque_filter'
  58. elseif clothingfilter['inhibition'] = 0 and clo_i <= 50:
  59. jump 'loopfancy_burlesque_filter'
  60. end
  61. end
  62. if $ARGS[0] = 'fancy_burlesque':
  63. cla
  64. menu_off = 1
  65. if fancy_burlesque[i] ! 0:
  66. msg 'You already own these clothes.'
  67. gt 'shop_fancy_pancy', 'clothes'
  68. end
  69. gt 'clothing', 'view_clothing_item', 'fancy_burlesque',i, 20000, 'shop'
  70. end
  71. --- shop_fancy_pancy ---------------------------------