1
0

NewCloShop.qsrc 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # NewCloShop
  2. $location_type = 'event'
  3. if $ARGS[0] = 'start':
  4. $metka = 'start'
  5. $loc = 'NewCloShop'
  6. gs 'stat'
  7. gs 'themes', 'indoors'
  8. '<center><b><font color="maroon">Fashionista</font></b></center>'
  9. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/fashionista/fashinista.jpg"</center>'
  10. 'This shop features many big name brands and designer clothing. Even their bags look cool.'
  11. act 'Leave':
  12. minut += 3
  13. view
  14. gt 'torgcentr'
  15. end
  16. act 'View clothing': minut += 5 & gt 'NewCloShop', 'clothes'
  17. act 'View panties': minut += 5 & gt 'NewCloShop', 'panties'
  18. act 'View bras': minut += 5 & gt 'NewCloShop', 'bras'
  19. act 'View purses': minut += 5 & gt 'NewCloShop', 'purses'
  20. end
  21. if $ARGS[0] = 'clothes':
  22. $metka = 'clothes'
  23. $loc = 'NewCloShop'
  24. cls
  25. gs'stat'
  26. '<center><b><font color="maroon">Viewing Fashionista clothing</font></b></center>'
  27. *nl
  28. gs 'clothing_QV', 'shop_header'
  29. act 'Return':
  30. cla
  31. minut += 1
  32. gt 'NewCloShop', 'start'
  33. end
  34. i = Clothingstock +1
  35. if Clothingstock - 12 > 0:i -= 12
  36. :loopexpensive
  37. if expensive[i] = 0:
  38. gs 'clothing_attributes', 'expensive', i
  39. gs 'clothing_QV', 'shop_filter'
  40. if clothingfilter_risk = 1 and clothingfilter_pandb = 1 and clothingfilter_norm2 = 1: *p '<a href="exec: i = <<i>> & gt ''NewCloShop'', ''shmotmag''"><img src="images/pc/clothing/3expensive/<<i>>.jpg" height="250" /></a>'
  41. end
  42. i += 12
  43. if i <= 425:jump 'loopexpensive'
  44. end
  45. if $ARGS[0] = 'shmotmag':
  46. cla
  47. if expensive[i] ! 0:
  48. msg 'You already own these clothes.'
  49. gt 'NewCloShop', 'clothes'
  50. end
  51. gt 'clothing', 'view_clothing_item', 'shop', 'expensive',i, 8000
  52. end
  53. if $ARGS[0] = 'panties':
  54. $metka = 'panties'
  55. $loc = 'NewCloShop'
  56. cls
  57. gs'stat'
  58. act 'Return':
  59. cla
  60. minut += 1
  61. gt 'NewCloShop', 'start'
  62. end
  63. i = 1
  64. :loopfashionista_panties
  65. if fashionista_panties[i] = 0:*p '<a href="exec: i = <<i>> & gt ''NewCloShop'', ''panties2''"><img src="images/pc/panties/fashionista/<<i>>.jpg" height="150" /></a> '
  66. i += 1
  67. if i <= 75:jump 'loopfashionista_panties'
  68. end
  69. if $ARGS[0] = 'panties2':
  70. cla
  71. if fashionista_panties[i] ! 0:
  72. msg 'You already own these panties.'
  73. gt 'NewCloShop', 'panties'
  74. end
  75. gt 'panties', 'view_panty_item', 'shop', 'fashionista',i, 750
  76. end
  77. if $ARGS[0] = 'bras':
  78. $metka = 'bras'
  79. $loc = 'NewCloShop'
  80. cls
  81. gs'stat'
  82. act 'Return':
  83. cla
  84. minut += 1
  85. gt 'NewCloShop', 'start'
  86. end
  87. i = 1
  88. :loopfashionista_bras
  89. if fashionista_bras[i] = 0:*p '<a href="exec: i = <<i>> & gt ''NewCloShop'', ''bras2''"><img src="images/pc/bras/fashionista/<<i>>.jpg" height="150" /></a> '
  90. i += 1
  91. if i <= 38:jump 'loopfashionista_bras'
  92. end
  93. if $ARGS[0] = 'bras2':
  94. cla
  95. if fashionista_bras[i] ! 0:
  96. msg 'You already own this bra.'
  97. gt 'NewCloShop', 'bras'
  98. end
  99. gt 'bras', 'view_bra_item', 'shop', 'fashionista',i, 750
  100. end
  101. if $ARGS[0] = 'purses':
  102. $metka = 'purses'
  103. $loc = 'NewCloShop'
  104. cls
  105. gs'stat'
  106. act 'Return':
  107. cla
  108. minut += 1
  109. gt 'NewCloShop', 'start'
  110. end
  111. i = 1
  112. :loopfashionista_purses
  113. if fashionista_purse[i] = 0:*p '<a href="exec: i = <<i>> & gt ''NewCloShop'', ''purses2''"><img src="images/pc/purses/fashionista/<<i>>.jpg" height="150" /></a> '
  114. i += 1
  115. if i <= 15:jump 'loopfashionista_purses'
  116. end
  117. if $ARGS[0] = 'purses2': gt 'purses', 'view_purse_item', 'shop', 'fashionista',i, 3000
  118. --- NewCloShop ---------------------------------