1
0

exhibitionistshop 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # exhibitionistshop
  2. if $ARGS[0] = 'start':
  3. CLOSE ALL
  4. $loc = 'exhibitionistshop'
  5. $metka = 'start'
  6. $location_type = 'public_indoors'
  7. cls
  8. minut += 5
  9. if exhibitionQW = 3: exhibitionQW = 4
  10. gs 'stat'
  11. if night_mode = 1:
  12. fcolor = rgb(255, 255, 255)
  13. bcolor = rgb(0, 0, 0)
  14. lcolor = rgb(106, 90, 205)
  15. else
  16. fcolor = rgb(0, 0, 0)
  17. bcolor = rgb(255, 255, 255)
  18. lcolor = rgb(106, 90, 205)
  19. end
  20. '<center><b><font color="maroon">Exhibitionist Shop</font></b></center>'
  21. '<center><img <<$set_imgh>> src="images/locations/oldtown/exhibitshop/shop.jpg"></center>'
  22. 'A shop in the most modern style who''s clothing is all very revealing and not nearly as classy as the store itself.'
  23. act 'Leave':
  24. minut += 5
  25. gt 'liames'
  26. end
  27. act 'View clothing':
  28. minut += 1
  29. gt 'exhibitionistshop', 'clo'
  30. end
  31. end
  32. if $ARGS[0] = 'clo':
  33. $metka = 'clo'
  34. $loc = 'exhibitionistshop'
  35. cls
  36. gs'stat'
  37. 'Exhibitionist clothing.'
  38. act 'Return':
  39. cla
  40. minut += 5
  41. gt 'exhibitionistshop', 'start'
  42. end
  43. if Clothingstock >= 18:
  44. i = 1
  45. elseif Clothingstock >= 12:
  46. i = 2
  47. elseif Clothingstock >= 6:
  48. i = 3
  49. else
  50. i = 4
  51. end
  52. :loopexhibit
  53. if exhibit[i] = 0:*p '<a href="exec: i = <<i>> & gt ''exhibitionistshop'', ''exhibit''"><img <<$set_imgh>> src="images/pc/clothing/9exhibit/<<i>>.jpg" height="250" /></a>'
  54. i += 4
  55. if i <= 57:jump 'loopexhibit'
  56. end
  57. if $ARGS[0] = 'exhibit':
  58. cla
  59. if exhibit[i] ! 0:
  60. msg 'You already own these clothes.'
  61. gt 'exhibitionistshop', 'clo'
  62. end
  63. gt 'clothing', 'view_clothing_item', 'shop', 'exhibit',i, 1000
  64. end
  65. --- exhibitionistshop ---------------------------------