rasputin_entrance.qsrc 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # rasputin_entrance
  2. music_loop = 0
  3. CLOSE ALL
  4. $menu_loc = 'rasputin_entrance'
  5. $menu_arg = ''
  6. menu_off = 0
  7. $loc_arg = ''
  8. $loc = 'rasputin_entrance'
  9. $location_type = 'public_outdoors'
  10. gs 'stat'
  11. if hour >= 2 and hour < 15:
  12. '<center><img <<$set_imgh>> src="images/locations/pushkin/rasputin/building_day.jpg"></center>'
  13. 'The front door is closed, you may use the employee''s entrance if you work here.'
  14. act 'Return to the square':
  15. if rasputin['burlesque_ticket'] = 2 or rasputin['variety_ticket'] = 2:
  16. 'You will not be able to return for the second half of the show. Are you sure you want to leave?'
  17. act 'Yes':
  18. if rasputin['burlesque_ticket'] = 2: rasputin['burlesque_ticket'] = 0
  19. if rasputin['variety_ticket'] = 2: rasputin['variety_ticket'] = 0
  20. minute += 1
  21. gt 'liames'
  22. end
  23. act 'No': gt 'rasputin_entrance'
  24. else
  25. minute += 1
  26. gt 'liames'
  27. end
  28. end
  29. act 'Go to emplyee''s entrance':
  30. if rasputin['work'] = 1:
  31. minute += 1
  32. gt 'rasputin_room_staff'
  33. else
  34. msg 'You don''t work here and have no reason to enter.'
  35. minute += 1
  36. gt 'rasputin_entrance'
  37. end
  38. end
  39. else
  40. '<center><img <<$set_imgh>> src="images/locations/pushkin/rasputin/building_night.jpg"></center>'
  41. 'The club is open for business.'
  42. act 'Return to the square':
  43. minute += 1
  44. gt 'liames'
  45. end
  46. act 'Visit the hostess':
  47. minute += 1
  48. gt 'rasputin_host', 'start'
  49. end
  50. act 'Go inside the club':
  51. minute += 1
  52. gt 'rasputin_walkway'
  53. end
  54. if rasputin['work'] = 1:
  55. act 'Go to the staff lounge':
  56. if rasputin['work'] = 1:
  57. minute += 1
  58. gt 'rasputin_room_staff'
  59. end
  60. end
  61. end
  62. end
  63. --- rasputin_entrance ---------------------------------