exhibitionistshop.qsrc 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. # exhibitionistshop
  2. if $ARGS[0] = 'start':
  3. CLOSE ALL
  4. $loc = 'exhibitionistshop'
  5. $metka = 'start'
  6. $location_type = 'public_indoors'
  7. $menu_loc = 'exhibitionistshop'
  8. $menu_arg = 'start'
  9. menu_off = 0
  10. cla & *clr
  11. if exhibitionQW = 3: exhibitionQW = 4
  12. gs 'stat'
  13. gs 'themes', 'indoors'
  14. '<center><b><font color="maroon">Exhibitionist Shop</font></b></center>'
  15. '<center><img <<$set_imgh>> src="images/locations/oldtown/exhibitshop/shop.jpg"></center>'
  16. 'A shop in the most modern style who''s clothing is all very revealing and not nearly as classy as the store itself.'
  17. act 'Leave':
  18. minut += 5
  19. gt 'liames'
  20. end
  21. act 'View clothing':
  22. minut += 5
  23. gt 'exhibitionistshop', 'clo'
  24. end
  25. act 'View panties':
  26. minut += 5
  27. gt 'exhibitionistshop', 'panties'
  28. end
  29. act 'View bras':
  30. minut += 5
  31. gt 'exhibitionistshop', 'bras'
  32. end
  33. end
  34. if $ARGS[0] = 'clo':
  35. $metka = 'clo'
  36. $loc = 'exhibitionistshop'
  37. cls
  38. gs'stat'
  39. '<center><b><font color="maroon">Exhibitionist clothing</font></b></center>'
  40. *nl
  41. gs 'clothing_QV', 'shop_header'
  42. act 'Return':
  43. cla
  44. minut += 1
  45. gt 'exhibitionistshop', 'start'
  46. end
  47. if Clothingstock >= 18:
  48. i = 1
  49. elseif Clothingstock >= 12:
  50. i = 2
  51. elseif Clothingstock >= 6:
  52. i = 3
  53. else
  54. i = 4
  55. end
  56. :loopexhibit
  57. if exhibit[i] = 0:
  58. gs 'clothing_attributes', 'exhibit', i
  59. gs 'clothing_QV', 'shop_filter'
  60. if clothingfilter_risk = 1 and clothingfilter_pandb = 1 and clothingfilter_norm2 = 1: *p '<a href="exec: i = <<i>> & gt ''exhibitionistshop'', ''exhibit''"><img <<$set_imgh>> src="images/pc/clothing/9exhibit/<<i>>.jpg" height="250" /></a>'
  61. end
  62. i += 4
  63. if i <= 57:jump 'loopexhibit'
  64. end
  65. if $ARGS[0] = 'exhibit':
  66. cla
  67. if exhibit[i] ! 0:
  68. msg 'You already own these clothes.'
  69. gt 'exhibitionistshop', 'clo'
  70. end
  71. gt 'clothing', 'view_clothing_item', 'shop', 'exhibit',i, 1000
  72. end
  73. if $ARGS[0] = 'panties':
  74. $metka = 'panties'
  75. $loc = 'exhibitionistshop'
  76. cls
  77. gs'stat'
  78. act 'Return':
  79. cla
  80. minut += 1
  81. gt 'exhibitionistshop', 'start'
  82. end
  83. i = 2
  84. :loopexhibitionist_panties
  85. if exhibitionist_panties[i] = 0:*p '<a href="exec: i = <<i>> & gt ''exhibitionistshop'', ''panties2''"><img src="images/pc/panties/exhibitionist/<<i>>.jpg" height="150" /></a> '
  86. i += 1
  87. if i <= 59:jump 'loopexhibitionist_panties'
  88. end
  89. if $ARGS[0] = 'panties2':
  90. cla
  91. if exhibitionist_panties[i] ! 0:
  92. msg 'You already own these panties.'
  93. gt 'exhibitionistshop', 'panties'
  94. end
  95. gt 'panties', 'view_panty_item', 'shop', 'exhibitionist',i, 600
  96. end
  97. if $ARGS[0] = 'bras':
  98. $metka = 'bras'
  99. $loc = 'exhibitionistshop'
  100. cls
  101. gs'stat'
  102. act 'Return':
  103. cla
  104. minut += 1
  105. gt 'exhibitionistshop', 'start'
  106. end
  107. i = 2
  108. :loopexhibitionist_bras
  109. if exhibitionist_bras[i] = 0:*p '<a href="exec: i = <<i>> & gt ''exhibitionistshop'', ''bras2''"><img src="images/pc/bras/exhibitionist/<<i>>.jpg" height="150" /></a> '
  110. i += 1
  111. if i <= 37:jump 'loopexhibitionist_bras'
  112. end
  113. if $ARGS[0] = 'bras2':
  114. cla
  115. if exhibitionist_bras[i] ! 0:
  116. msg 'You already own these bras.'
  117. gt 'exhibitionistshop', 'bras'
  118. end
  119. gt 'bras', 'view_bra_item', 'shop', 'exhibitionist',i, 600
  120. end
  121. --- exhibitionistshop ---------------------------------