exhibitionistshop.qsrc 3.3 KB

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