rasputin_walkway.qsrc 4.6 KB

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