rasputin_walkway.qsrc 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # rasputin_walkway
  2. music_loop = 0
  3. CLOSE ALL
  4. $menu_loc = 'rasputin_walkway'
  5. $menu_arg = ''
  6. menu_off = 0
  7. $loc_arg = ''
  8. $loc = 'rasputin_walkway'
  9. $location_type = 'public_indoors'
  10. gs 'stat'
  11. '<center><img <<$set_imgh>> src="images/locations/pushkin/rasputin/walkway.jpg"></center>'
  12. 'You enter the passage way that leads to various sections of the club.'
  13. *nl
  14. if hour > 2 and hour < 15:
  15. msg 'The club is closing up for the day and the staff lead you outside.'
  16. gt 'pushkin_sq'
  17. else
  18. act 'Leave':
  19. minut += 1
  20. gt 'rasputin_entrance'
  21. end
  22. if (hour >= 15 and hour < 17) or (hour = 17 and minut < 30):
  23. 'A member of staff informs you that it is too early to watch either show.'
  24. elseif hour = 17 or (hour = 18 and minut < 30):
  25. act 'Go watch the burlesque show':
  26. if rasputin['burlesque_ticket'] = 0:
  27. 'You must first purchase a ticket from the hostess.'
  28. else
  29. rasputin['burlesque_ticket'] = 0
  30. gt 'rasputin_show_bur'
  31. end
  32. end
  33. elseif hour = 17 or (hour = 18 and minut < 30):
  34. 'The staff informs you that you are too late for the first half of the burlesque show, but you can still enter after the intermission between 19:30 and 20:00.'
  35. elseif hour = 18 or (hour = 19 and minut < 30):
  36. if rasputin['burlesque_ticket'] = 2:
  37. 'A member of staff informs you that entry for the second half of the burlesque show is between 19:30 and 20:00'
  38. else
  39. 'A member of staff informs you that you are too late for the first half of the burlesque show, but you can still enter after the intermission between 19:30 and 20:00.'
  40. end
  41. elseif hour = 19:
  42. act 'Watch second half of the burlesque show':
  43. if rasputin['burlesque_ticket'] = 0:
  44. 'You must first purchase a ticket from the hostess.'
  45. else
  46. rasputin['burlesque_ticket'] = 0
  47. gt 'rasputin_show_bur'
  48. end
  49. end
  50. elseif hour < 21:
  51. 'A member of staff informs you that the burlesque show has finished and the exotic variety show will be starting from 9pm'
  52. elseif hour = 21:
  53. act 'Go watch the exotic variety show':
  54. if rasputin['variety_ticket'] = 0:
  55. 'You must first purchase a ticket from the hostess.'
  56. else
  57. rasputin['variety_ticket'] = 0
  58. gt 'rasputin_show_var'
  59. end
  60. end
  61. elseif hour = 22:
  62. 'The staff apologizes and let you know that you are too late for the enter the first half of the show and asks you to return during the intermission between 23:30 and midnight.'
  63. elseif hour = 23 and minut < 30:
  64. if rasputin['variety_ticket'] = 2:
  65. 'A member of staff informs you that entry for the second half of the erotic variety show is between 23:30 and 00:00'
  66. else
  67. 'A member of staff informs you that you are too late for the first half of the erotic variety show, but you can still enter after the intermission between 23:30 and midnight.'
  68. end
  69. act 'Watch second half of the erotic variety show':
  70. if rasputin['burlesque_ticket'] = 0:
  71. 'You must first purchase a ticket from the hostess.'
  72. else
  73. rasputin['burlesque_ticket'] = 0
  74. gt 'rasputin_show_bur'
  75. end
  76. end
  77. else
  78. 'The inner door to the variety shows is closed. A member of staff informs you that the last show is in progress and that there are no more shows tonight.'
  79. end
  80. if rasputin['free_drink'] ! daystart:
  81. if (hour = 19 and minut > 30) or (hour = 20 and minut < 30) and rasputin['burlesque_ticket'] > 0:
  82. act 'Take a free drink':
  83. rasputin['free_drink'] = daystart
  84. minut += 5
  85. gs 'drugs', 'alcohol', 'champagne'
  86. *clr & cla
  87. gs 'stat'
  88. '<center><img <<$set_imgh>> src="images/locations/pushkin/rasputin/drinks_free_2.jpg"></center>'
  89. 'You decide to take a glass of champagne freely offered from the staff and relax yourself a bit.'
  90. act 'Return': gt 'rasputin_walkway'
  91. end
  92. end
  93. if (hour = 21 and minut > 30) or hour > 21 or hour < 2 and rasputin['variety_ticket'] > 0:
  94. act 'Take a free drink':
  95. rasputin['free_drink'] = daystart
  96. minut += 5
  97. gs 'drugs', 'alcohol', 'champagne'
  98. *clr & cla
  99. gs 'stat'
  100. '<center><img <<$set_imgh>> src="images/locations/pushkin/rasputin/drinks_free_3.jpg"></center>'
  101. 'You decide to take a glass of free champagne from the pretty server.'
  102. act 'Return': gt 'rasputin_walkway'
  103. end
  104. end
  105. end
  106. !! Not yet available and image message won''t appear here so remember to delete and add to new location when its written
  107. !! if (hour = 17 and minut > 30) or hour > 17 or hour < 2:
  108. !! act 'Go to the bar area':
  109. !! '<center><img <<$set_imgh>> src="images/locations/pushkin/rasputin/drinks_bar.jpg"></center>'
  110. !! 'You go to the bar area and hoping to get something stronger.'
  111. !! minut += 1
  112. !! gt 'rasputin_bar'
  113. !! end
  114. !! end
  115. end
  116. --- rasputin_walkway ---------------------------------