shop_skuas.qsrc 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # shop_skuas
  2. if $ARGS[0] = 'start':
  3. $loc_arg = $ARGS[0]
  4. $loc = 'shop_skuas'
  5. $location_type = 'public_indoors'
  6. $menu_loc = 'shop_skuas'
  7. $menu_arg = 'start'
  8. menu_off = 0
  9. *clr & cla
  10. mag = 1
  11. gs 'stat'
  12. gs 'themes', 'indoors'
  13. '<center><b><font color="maroon">Skuas</font></b></center>'
  14. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/mall/boutique/butik.jpg"></center>'
  15. *nl
  16. 'This exclusive boutique stands out amongst the rest of Pushkin''s small shops mostly just selling crap to tourists. It shows reverence the each outfit, displaying them with no petty concerns like fitting in more stock or speeding up the selling process. It is beautiful and every outfit is a labour of love. It''s going to cost you plenty to shop here.'
  17. act 'Leave the boutique': minut += 3 & gt 'torgcentr'
  18. !!act 'View clothing': minut += 5 & gt 'shop_skuas', 'clothes'
  19. end
  20. if $ARGS[0] = 'clothes':
  21. $loc_arg = 'clothes'
  22. $loc = 'shop_skuas'
  23. $menu_loc = 'shop_skuas'
  24. $menu_arg = 'clothes'
  25. menu_off = 0
  26. *clr & cla
  27. gs'stat'
  28. '<center><b><font color="maroon">Viewing Skuas outfits</font></b></center>'
  29. *nl
  30. gs 'clothing_QV', 'shop_header'
  31. act 'Return': minut += 1 & gt 'shop_skuas', 'start'
  32. clothingfilter['qualitycheck'] = 7
  33. :loopquality
  34. if Clothingstock > 11:
  35. i = 1
  36. else
  37. i = 2
  38. end
  39. :loopskuas
  40. if skuas[i] = 0:
  41. gs 'clothing_attributes', 'skuas', i
  42. gs 'clothing_QV', 'shop_filter'
  43. if clothingfilter['quality'] = 0 or clothingfilter['qualitycheck'] = CloQuality:
  44. if clothingfilter_risk = 1 and clothingfilter_pandb = 1 and clothingfilter_norm2 = 1: *p '<a href="exec: i = <<i>> & gt ''shop_skuas'', ''skuas''"><img src="images/pc/items/skuas/<<i>>.jpg" height="250" /></a>'
  45. end
  46. end
  47. i += 2
  48. if i <= 185:jump 'loopskuas'
  49. if clothingfilter['quality'] = 1 and clothingfilter['qualitycheck'] > 0: clothingfilter['qualitycheck'] -=1 & jump 'loopquality'
  50. end
  51. if $ARGS[0] = 'skuas':
  52. cla
  53. menu_off = 1
  54. if skuas[i] ! 0:
  55. msg 'You already own these clothes.'
  56. gt 'shop_skuas', 'clothes'
  57. end
  58. gt 'clothing', 'view_clothing_item', 'shop', 'skuas',i, 20000
  59. end
  60. --- shop_skuas ---------------------------------