NewCloShop 3.1 KB

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