exhibitionistshop 1.6 KB

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