1
0

city_musicstore_stock.qsrc 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. # city_musicstore_stock
  2. if $ARGS[0]='electric':
  3. *clr & cla
  4. $store = 'musicstore'
  5. '<center><table border=1>
  6. <TH>
  7. <center><a href="exec:gs ''city_musicstore_stock'', ''electric'', ''store'', ''<<$store>>''">Electric guitars</a></center>
  8. </TH>
  9. <TH>
  10. <center><a href="exec:gs ''city_musicstore_stock'', ''acoustic'', ''store'', ''<<$store>>''">Acoustic guitars</a></center>
  11. </TH>
  12. <TH>
  13. <center><a href="exec:gs ''city_musicstore_stock'', ''amplifier'', ''store'', ''<<$store>>''">Amplifiers</a></center>
  14. </TH>
  15. <TH>
  16. <center><a href="exec:gs ''city_musicstore_stock'', ''studio'', ''store'', ''<<$store>>''">Studio Equipment</a></center>
  17. </TH>
  18. </table></center>'
  19. '<center><font size="+4" color="red"><b>Warning: Right now, these guitars have no effect on gameplay!</b></font></center>'
  20. '<center><table border=1>
  21. <tr>
  22. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/burny-rlg55-vld.jpg" align="left"></td>
  23. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/epiphone-les-paul-express.jpg" align="left"></td>
  24. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/fender-american-professional-stratocaster.jpg" align="left"></td>
  25. </tr>
  26. <tr>
  27. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/fender-player-tele.jpg" align="left"></td>
  28. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/gibson-2019-les-paul.jpg" align="left"></td>
  29. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/yamaha-pacifica-012-rm.jpg" align="left"></td>
  30. </tr>
  31. </table>
  32. </center>'
  33. act 'Leave': gt 'city_musicstore', 'musicshop'
  34. if karta >= 43990 and ml_guitars['burny-rlg55-vld'] = 0:
  35. act 'Buy the Burny RLG55 VLD with card (43,990 P)':
  36. ml_guitars['burny-rlg55-vld'] = 1
  37. karta -= 43990
  38. ml_boughtguitar += 1
  39. ml_gigbag = 1
  40. gs 'stat'
  41. gt 'city_musicstore_stock', 'electric'
  42. end
  43. end
  44. if money >= 43990 and ml_guitars['burny-rlg55-vld'] = 0:
  45. act 'Buy the Burny RLG55 VLD with cash (43,990 P)':
  46. ml_guitars['burny-rlg55-vld'] = 1
  47. money -= 43990
  48. ml_boughtguitar += 1
  49. ml_gigbag = 1
  50. gs 'stat'
  51. gt 'city_musicstore_stock', 'electric'
  52. end
  53. end
  54. if karta >= 14280 and ml_guitars['epiphone-les-paul-express'] = 0:
  55. act 'Buy the Epiphone Les Paul Express with card (14,280 P)':
  56. ml_guitars['epiphone-les-paul-express'] = 1
  57. karta -= 14280
  58. ml_boughtguitar += 1
  59. ml_gigbag = 1
  60. gs 'stat'
  61. gt 'city_musicstore_stock', 'electric'
  62. end
  63. end
  64. if money >= 14280 and ml_guitars['epiphone-les-paul-express'] = 0:
  65. act 'Buy the Epiphone Les Paul Express with cash (14,280 P)':
  66. ml_guitars['epiphone-les-paul-express'] = 1
  67. money -= 14280
  68. ml_boughtguitar += 1
  69. ml_gigbag = 1
  70. gs 'stat'
  71. gt 'city_musicstore_stock', 'electric'
  72. end
  73. end
  74. if karta >= 179000 and ml_guitars['fender-american-professional-stratocaster'] = 0:
  75. act 'Buy the Fender American Professional Stratocaster with card (179,000 P)':
  76. ml_guitars['fender-american-professional-stratocaster'] = 1
  77. karta -= 179000
  78. ml_boughtguitar += 1
  79. ml_hardcase = 1
  80. gs 'stat'
  81. gt 'city_musicstore_stock', 'electric'
  82. end
  83. end
  84. if money >= 179000 and ml_guitars['fender-american-professional-stratocaster'] = 0:
  85. act 'Buy the Fender American Professional Stratocaster with cash (179,000 P)':
  86. ml_guitars['fender-american-professional-stratocaster'] = 1
  87. money -= 179000
  88. ml_boughtguitar += 1
  89. ml_hardcase = 1
  90. gs 'stat'
  91. gt 'city_musicstore_stock', 'electric'
  92. end
  93. end
  94. if karta >= 83000 and ml_guitars['fender-player-tele'] = 0:
  95. act 'Buy the Fender Player Tele with card (83,000 P)':
  96. ml_guitars['fender-player-tele'] = 1
  97. karta -= 83000
  98. ml_boughtguitar += 1
  99. ml_hardcase = 1
  100. gs 'stat'
  101. gt 'city_musicstore_stock', 'electric'
  102. end
  103. end
  104. if money >= 83000 and ml_guitars['fender-player-tele'] = 0:
  105. act 'Buy the Fender Player Tele with cash (83,000 P)':
  106. ml_guitars['fender-player-tele'] = 1
  107. money -= 83000
  108. ml_boughtguitar += 1
  109. ml_hardcase = 1
  110. gs 'stat'
  111. gt 'city_musicstore_stock', 'electric'
  112. end
  113. end
  114. if karta >= 241000 and ml_guitars['gibson-2019-les-paul'] = 0:
  115. act 'Buy the Gibson 2019 Les Paul with card (241,000 P)':
  116. ml_guitars['gibson-2019-les-paul'] = 1
  117. karta -= 241000
  118. ml_boughtguitar += 1
  119. ml_hardcase = 1
  120. gs 'stat'
  121. gt 'city_musicstore_stock', 'electric'
  122. end
  123. end
  124. if money >= 241000 and ml_guitars['gibson-2019-les-paul'] = 0:
  125. act 'Buy the Gibson 2019 Les Paul with cash (241,000 P)':
  126. ml_guitars['gibson-2019-les-paul'] = 1
  127. money -= 241000
  128. ml_boughtguitar += 1
  129. ml_hardcase = 1
  130. gs 'stat'
  131. gt 'city_musicstore_stock', 'electric'
  132. end
  133. end
  134. if karta >= 17990 and ml_guitars['yamaha-pacifica-012-rm'] = 0:
  135. act 'Buy the Yamaha Pacifica 012 RM with card (17,900 P)':
  136. ml_guitars['yamaha-pacifica-012-rm'] = 1
  137. karta -= 17990
  138. ml_boughtguitar += 1
  139. ml_gigbag = 1
  140. gs 'stat'
  141. gt 'city_musicstore_stock', 'electric'
  142. end
  143. end
  144. if money >= 17990 and ml_guitars['yamaha-pacifica-012-rm'] = 0:
  145. act 'Buy the Yamaha Pacifica 012 RM with cash (17,900 P)':
  146. ml_guitars['yamaha-pacifica-012-rm'] = 1
  147. money -= 17990
  148. ml_boughtguitar += 1
  149. ml_gigbag = 1
  150. gs 'stat'
  151. gt 'city_musicstore_stock', 'electric'
  152. end
  153. end
  154. end
  155. if $ARGS[0]='acoustic':
  156. *clr & cla
  157. $store = 'musicstore'
  158. '<center><table border=1>
  159. <TH>
  160. <center><a href="exec:gs ''city_musicstore_stock'', ''electric'', ''store'', ''<<$store>>''">Electric guitars</a></center>
  161. </TH>
  162. <TH>
  163. <center><a href="exec:gs ''city_musicstore_stock'', ''acoustic'', ''store'', ''<<$store>>''">Acoustic guitars</a></center>
  164. </TH>
  165. <TH>
  166. <center><a href="exec:gs ''city_musicstore_stock'', ''amplifier'', ''store'', ''<<$store>>''">Amplifiers</a></center>
  167. </TH>
  168. <TH>
  169. <center><a href="exec:gs ''city_musicstore_stock'', ''studio'', ''store'', ''<<$store>>''">Studio Equipment</a></center>
  170. </TH>
  171. </table></center>'
  172. '<center><font size="+4" color="red"><b>Warning: Right now, these guitars have no effect on gameplay!</b></font></center>'
  173. '<center><table border=1>
  174. <tr>
  175. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/martin-hdc-28e.jpg" align="left"></td>
  176. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/martin-d10e-01.jpg" align="left"></td>
  177. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/martin-ed-sheeran.jpg" align="left"></td>
  178. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/martin-lx-1.jpg" align="left"></td>
  179. </tr>
  180. </table>
  181. </center>'
  182. act 'Leave': gt 'city_musicstore', 'musicshop'
  183. if karta >= 320000 and ml_guitars['martin-hdc-28e'] = 0:
  184. act 'Buy the Martin HDC-28E with card (320,000 P)':
  185. ml_guitars['martin-hdc-28e'] = 1
  186. karta -= 320000
  187. ml_boughtguitar += 1
  188. ml_hardcase = 1
  189. if ml_guitar['carried'] = 0: ml_guitar['carried'] = 1
  190. gs 'stat'
  191. gt 'city_musicstore_stock', 'acoustic'
  192. end
  193. end
  194. if money >= 320000 and ml_guitars['martin-hdc-28e'] = 0:
  195. act 'Buy the Martin HDC-28E with cash (320,000 P)':
  196. ml_guitars['martin-hdc-28e'] = 1
  197. money -= 320000
  198. ml_boughtguitar += 1
  199. ml_hardcase = 1
  200. if ml_guitar['carried'] = 0: ml_guitar['carried'] = 1
  201. gs 'stat'
  202. gt 'city_musicstore_stock', 'acoustic'
  203. end
  204. end
  205. if karta >= 81990 and ml_guitars['martin-d10e-01'] = 0:
  206. act 'Buy the Martin D-10E-01 with card (81,990 P)':
  207. ml_guitars['martin-d10e-01'] = 1
  208. karta -= 81990
  209. ml_boughtguitar += 1
  210. ml_hardcase = 1
  211. if ml_guitar['carried'] = 0: ml_guitar['carried'] = 1
  212. gs 'stat'
  213. gt 'city_musicstore_stock', 'acoustic'
  214. end
  215. end
  216. if money >= 81990 and ml_guitars['martin-d10e-01'] = 0:
  217. act 'Buy the Martin D-10E-01 with cash (81,990 P)':
  218. ml_guitars['martin-d10e-01'] = 1
  219. money -= 81990
  220. ml_boughtguitar += 1
  221. ml_hardcase = 1
  222. if ml_guitar['carried'] = 0: ml_guitar['carried'] = 1
  223. gs 'stat'
  224. gt 'city_musicstore_stock', 'acoustic'
  225. end
  226. end
  227. if karta >= 63900 and ml_guitars['martin-ed-sheeran'] = 0:
  228. act 'Buy the Martin Ed Sheeran Signature Edition with card (63,900 P)':
  229. ml_guitars['martin-ed-sheeran'] = 1
  230. karta -= 63900
  231. ml_boughtguitar += 1
  232. ml_hardcase = 1
  233. if ml_guitar['carried'] = 0: ml_guitar['carried'] = 1
  234. gs 'stat'
  235. gt 'city_musicstore_stock', 'acoustic'
  236. end
  237. end
  238. if money >= 63900 and ml_guitars['martin-ed-sheeran'] = 0:
  239. act 'Buy the Martin Ed Sheeran Signature Edition with cash (63,900 P)':
  240. ml_guitars['martin-ed-sheeran'] = 1
  241. money -= 63900
  242. ml_boughtguitar += 1
  243. ml_hardcase = 1
  244. if ml_guitar['carried'] = 0: ml_guitar['carried'] = 1
  245. gs 'stat'
  246. gt 'city_musicstore_stock', 'acoustic'
  247. end
  248. end
  249. if karta >= 41990 and ml_guitars['martin-lx-1'] = 0:
  250. act 'Buy the Martin LX-1 with card (41,900 P)':
  251. ml_guitars['martin-lx-1'] = 1
  252. karta -= 41900
  253. ml_boughtguitar += 1
  254. ml_gigbag = 1
  255. if ml_guitar['carried'] = 0: ml_guitar['carried'] = 1
  256. gs 'stat'
  257. gt 'city_musicstore_stock', 'acoustic'
  258. end
  259. end
  260. if money >= 41990 and ml_guitars['martin-lx-1'] = 0:
  261. act 'Buy the Martin LX-1 with cash (41,900 P)':
  262. ml_guitars['martin-lx-1'] = 1
  263. money -= 41900
  264. ml_boughtguitar += 1
  265. ml_gigbag = 1
  266. if ml_guitar['carried'] = 0: ml_guitar['carried'] = 1
  267. gs 'stat'
  268. gt 'city_musicstore_stock', 'acoustic'
  269. end
  270. end
  271. end
  272. if $ARGS[0]='amplifier':
  273. *clr & cla
  274. $store = 'musicstore'
  275. '<center><table border=1>
  276. <TH>
  277. <center><a href="exec:gs ''city_musicstore_stock'', ''electric'', ''store'', ''<<$store>>''">Electric guitars</a></center>
  278. </TH>
  279. <TH>
  280. <center><a href="exec:gs ''city_musicstore_stock'', ''acoustic'', ''store'', ''<<$store>>''">Acoustic guitars</a></center>
  281. </TH>
  282. <TH>
  283. <center><a href="exec:gs ''city_musicstore_stock'', ''amplifier'', ''store'', ''<<$store>>''">Amplifiers</a></center>
  284. </TH>
  285. <TH>
  286. <center><a href="exec:gs ''city_musicstore_stock'', ''studio'', ''store'', ''<<$store>>''">Studio Equipment</a></center>
  287. </TH>
  288. </table></center>'
  289. '<center><font size="+4" color="red"><b>Warning: Right now, these amplifiers have no effect on gameplay!</b></font></center>'
  290. '<center><table border=1>
  291. <tr>
  292. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/kustom-kg112fx.jpg" align="left"></td>
  293. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/orange-rocker-32.jpg" align="left"></td>
  294. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/blackstar-artisan-15.jpg" align="left"></td>
  295. </tr>
  296. </table>
  297. </center>'
  298. act 'Leave': gt 'city_musicstore', 'musicshop'
  299. if karta >= 10790 and ml_amplifiers['kustom-kg112fx'] = 0:
  300. act 'Buy Kustom KG112FX with card (10,790 P)':
  301. ml_amplifiers['kustom-kg112fx'] = 1
  302. karta -= 10790
  303. ml_boughtamp += 1
  304. gs 'stat'
  305. gt 'city_musicstore_stock', 'amplifier'
  306. end
  307. end
  308. if money >= 10790 and ml_amplifiers['kustom-kg112fx'] = 0:
  309. act 'Buy Kustom KG112FX with cash (10,790 P)':
  310. ml_amplifiers['kustom-kg112fx'] = 1
  311. money -= 10790
  312. ml_boughtamp += 1
  313. gs 'stat'
  314. gt 'city_musicstore_stock', 'amplifier'
  315. end
  316. end
  317. if karta >= 99990 and ml_amplifiers['orange-rocker-32'] = 0:
  318. act 'Buy Orange Rocker 32 with card (99,990 P)':
  319. ml_amplifiers['orange-rocker-32'] = 1
  320. karta -= 99990
  321. ml_boughtamp += 1
  322. gs 'stat'
  323. gt 'city_musicstore_stock', 'amplifier'
  324. end
  325. end
  326. if money >= 99990 and ml_amplifiers['orange-rocker-32'] = 0:
  327. act 'Buy Orange Rocker 32 with cash (99,990 P)':
  328. ml_amplifiers['orange-rocker-32'] = 1
  329. money -= 99990
  330. ml_boughtamp += 1
  331. gs 'stat'
  332. gt 'city_musicstore_stock', 'amplifier'
  333. end
  334. end
  335. if karta >= 145900 and ml_amplifiers['blackstar-artisan-15'] = 0:
  336. act 'Buy Blackstar Artisan 15 with card (145.900 P)':
  337. ml_amplifiers['blackstar-artisan-15'] = 1
  338. karta -= 145900
  339. ml_boughtamp += 1
  340. gs 'stat'
  341. gt 'city_musicstore_stock', 'amplifier'
  342. end
  343. end
  344. if money >= 145900 and ml_amplifiers['blackstar-artisan-15'] = 0:
  345. act 'Buy Blackstar Artisan 15 with cash (145.900 P)':
  346. ml_amplifiers['blackstar-artisan-15'] = 1
  347. money -= 145900
  348. ml_boughtamp += 1
  349. gs 'stat'
  350. gt 'city_musicstore_stock', 'amplifier'
  351. end
  352. end
  353. end
  354. if $ARGS[0]='studio':
  355. *clr & cla
  356. $store = 'musicstore'
  357. '<center><table border=1>
  358. <TH>
  359. <center><a href="exec:gs ''city_musicstore_stock'', ''electric'', ''store'', ''<<$store>>''">Electric guitars</a></center>
  360. </TH>
  361. <TH>
  362. <center><a href="exec:gs ''city_musicstore_stock'', ''acoustic'', ''store'', ''<<$store>>''">Acoustic guitars</a></center>
  363. </TH>
  364. <TH>
  365. <center><a href="exec:gs ''city_musicstore_stock'', ''amplifier'', ''store'', ''<<$store>>''">Amplifiers</a></center>
  366. </TH>
  367. <TH>
  368. <center><a href="exec:gs ''city_musicstore_stock'', ''studio'', ''store'', ''<<$store>>''">Studio Equipment</a></center>
  369. </TH>
  370. </table></center>'
  371. '<center><table border=1>
  372. <tr>
  373. <td><img src="images/locations/city/citycenter/mall/musicstore/musictorestock/home-studio.jpg" align="left"></td>
  374. </tr>
  375. </table>
  376. </center>'
  377. act 'Leave': gt 'city_musicstore', 'musicshop'
  378. if karta >= 19980 and ml_studio['scarlet-3rd-gen'] = 0:
  379. act 'Buy Focusrite Scarlett Solo Studio 3rd Gen with card (19,980 P)':
  380. ml_studio['scarlet-3rd-gen'] = 1
  381. karta -= 19980
  382. gs 'stat'
  383. gt 'city_musicstore_stock', 'studio'
  384. end
  385. end
  386. if money >= 19980 and ml_studio['scarlet-3rd-gen'] = 0:
  387. act 'Buy Focusrite Scarlett Solo Studio 3rd Gen with cash (19,980 P)':
  388. ml_studio['scarlet-3rd-gen'] = 1
  389. money -= 19980
  390. gs 'stat'
  391. gt 'city_musicstore_stock', 'studio'
  392. end
  393. end
  394. end
  395. --- city_musicstore_stock ---------------------------------