purses.qsrc 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. # purses
  2. if $ARGS[0] = 'view_purse_list':
  3. menu_off = 1
  4. gs 'stat'
  5. !! ARGS 0 - view_purse_list
  6. if $ARGS[1] = 'wardrobe':
  7. ploc = 0
  8. end
  9. if $ARGS[1] = 'store':
  10. ploc = 1
  11. end
  12. if $ARGS[1] = 'unwanted':
  13. ploc = 2
  14. end
  15. act 'Return' :gt 'wardrobe', 'start'
  16. '<center><img src="images/locations/city/island/dolls.png"></center>'
  17. i = 1
  18. :loopdollspurses
  19. if dolls_purses[i] = 1 and dolls_pursesS[i] = ploc:*p '<a href="exec:gt ''purses'', ''view_purse_item'', ''home'', ''dolls'', <<i>>"><img src="images/pc/purses/dolls/<<i>>.jpg" height="300" /></a>'
  20. i += 1
  21. if i <= ARRSIZE('dolls_purses'):jump 'loopdollspurses'
  22. '<center><img src="images/locations/city/citycenter/mall/fashionistat.png"></center>'
  23. i = 1
  24. :loopfashionistapurses
  25. if fashionista_purses[i] = 1 and fashionista_pursesS[i] = ploc:*p '<a href="exec:gt ''purses'', ''view_purse_item'', ''home'', ''fashionista'', <<i>>"><img src="images/pc/purses/fashionista/<<i>>.jpg" height="300" /></a>'
  26. i += 1
  27. if i <= ARRSIZE('fashionista_purses'):jump 'loopfashionistapurses'
  28. '<center><img src="images/locations/city/citycenter/mall/gm.png"></center>'
  29. i = 1
  30. :loopcheappurses
  31. if cheap_purses[i] = 1 and cheap_pursesS[i] = ploc:*p '<a href="exec:gt ''purses'', ''view_purse_item'', ''home'', ''cheap'', <<i>>"><img src="images/pc/purses/cheap/<<i>>.jpg" height="300" /></a>'
  32. i += 1
  33. if i <= ARRSIZE('cheap_purses'):jump 'loopcheappurses'
  34. '<center><img src="images/locations/city/citycenter/mall/pussycat.png"></center>'
  35. i = 1
  36. :loopkatspurses
  37. if kats_purses[i] = 1 and kats_pursesS[i] = ploc:*p '<a href="exec:gt ''purses'', ''view_purse_item'', ''home'', ''kats'', <<i>>"><img src="images/pc/purses/kats/<<i>>.jpg" height="300" /></a>'
  38. i += 1
  39. if i <= ARRSIZE('kats_purses'):jump 'loopkatspurses'
  40. '<center><img src="images/locations/city/citycenter/mall/moncheri.png"></center>'
  41. i = 1
  42. :loopboutiquepurses
  43. if boutique_purses[i] = 1 and boutique_pursesS[i] = ploc:*p '<a href="exec:gt ''purses'', ''view_purse_item'', ''home'', ''boutique'', <<i>>"><img src="images/pc/purses/moncheri/<<i>>.jpg" height="300" /></a>'
  44. i += 1
  45. if i <= ARRSIZE('boutique_purses'):jump 'loopboutiquepurses'
  46. end
  47. if $ARGS[0] = 'view_purse_item':
  48. menu_off = 1
  49. gs 'stat'
  50. !! ARGS 0 - view_purse_item
  51. !! ARGS 1 = action type (home, shop)
  52. !! ARGS 2 - purse type
  53. !! ARGS 3 - purse index
  54. !! ARGS 4 - price for shop
  55. cla
  56. '<center><img src="<<FUNC(''$purse_image'', $ARGS[2], ARGS[3])>>"></center>'
  57. gs 'purses', 'descriptions', $ARGS[2]
  58. if $ARGS[1] = 'shop':
  59. if dyneval('RESULT = <<$ARGS[2]>>_purses[<<ARGS[3]>>]') = 1:
  60. 'You already own this purse.'
  61. act 'Leave': gt $loc, $metka
  62. else
  63. price = ARGS[4]
  64. 'Price: <<ARGS[4]>> <b>₽</b>'
  65. act 'Leave': gt $loc, $metka
  66. if money >= price:
  67. act 'Buy':
  68. money -= price
  69. dynamic $ARGS[2] + '_purses[<<ARGS[3]>>] = 1'
  70. if bag = 0:
  71. bag = 1
  72. $currentpursetype = $ARGS[2]
  73. currentpursenumber = ARGS[3]
  74. end
  75. gt $loc, $metka
  76. end
  77. else
  78. 'You cannot afford this purse.'
  79. end
  80. end
  81. elseif $ARGS[1] = 'home':
  82. act 'Return':gt 'purses', 'view_purse_list', $ARGS[1]
  83. if $currentpursetype = $ARGS[2] and currentpursenumber = ARGS[3]:
  84. 'You are using this purse.'
  85. else
  86. if sloc = 0:
  87. 'This purse is in your wardrobe.'
  88. act 'Use this purse':
  89. $currentpursetype = $ARGS[2]
  90. currentpursenumber = ARGS[3]
  91. bag = 1
  92. gt 'wardrobe', 'start'
  93. end
  94. elseif sloc = 1:
  95. 'This purse is in storage.'
  96. elseif sloc = 2:
  97. 'This purse is unwanted.'
  98. end
  99. if sloc ! 1:$RESULT += 'Move this purse to <a href="exec:gt ''purses'', ''dest1'', ''<<$ARGS[1]>>'', ''<<$ARGS[2]>>'', <<ARGS[3]>>">Storage</a><BR>'
  100. if sloc ! 0:$RESULT += 'Move this purse to <a href="exec:gt ''purses'', ''dest0'', ''<<$ARGS[1]>>'', ''<<$ARGS[2]>>'', <<ARGS[3]>>">Wardrobe</a><BR>'
  101. if sloc ! 2:$RESULT += 'Move this purse to <a href="exec:gt ''purses'', ''dest2'', ''<<$ARGS[1]>>'', ''<<$ARGS[2]>>'', <<ARGS[3]>>">Unwanted</a>'
  102. end
  103. end
  104. end
  105. if $ARGS[0] = 'dest0':
  106. *clr
  107. dynamic '<<$ARGS[2]>>_pursesS[<<ARGS[3]>>] = 0'
  108. gt 'purses', 'view_purse_item', $ARGS[1], $ARGS[2], ARGS[3]
  109. end
  110. if $ARGS[0] = 'dest1':
  111. *clr
  112. dynamic '<<$ARGS[2]>>_pursesS[<<ARGS[3]>>] = 1'
  113. gt 'purses', 'view_purse_item', $ARGS[1], $ARGS[2], ARGS[3]
  114. end
  115. if $ARGS[0] = 'dest2':
  116. *clr
  117. dynamic '<<$ARGS[2]>>_pursesS[<<ARGS[3]>>] = 2'
  118. gt 'purses', 'view_purse_item', $ARGS[1], $ARGS[2], ARGS[3]
  119. end
  120. if $ARGS[0] = 'descriptions':
  121. if $ARGS[1] = 'dolls':
  122. 'Let your freak flag fly with this perfect purse for the hot, independent girl that lives the alt lifestyle.'
  123. elseif $ARGS[1] = 'fashionista':
  124. 'A stylish handbag for any fashion-forward female!'
  125. elseif $ARGS[1] = 'cheap':
  126. 'A functional, if not too fashionable, handbag for carrying all of the essentials.'
  127. elseif $ARGS[1] = 'kats':
  128. 'A fun and flirty purse for any young lady looking for fun on a night out.'
  129. elseif $ARGS[1] = 'boutique':
  130. 'A high-fashion handbag for ladies with discerning tastes. Show how classy you are with this expensive accessory.'
  131. end
  132. end
  133. if $ARGS[0] = 'remove':
  134. killvar '$currentpursetype'
  135. killvar 'currentpursenumber'
  136. bag = 0
  137. end
  138. --- purses ---------------------------------