1
0

Maria1.qsrc 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. # Maria1
  2. clr
  3. menu_off = 1
  4. minut += 1
  5. '<right><img <<$set_imgh>> src="images/locations/city/industrial/casino/metrd.jpg"></right>'
  6. 'You walk up to the front reception and get greeted by a smiling young woman behind the counter.'
  7. '"How can I help you?" she asks.'
  8. act 'See the room descriptions':
  9. cla
  10. minut += 2
  11. 'There are 4 types of rooms available:'
  12. '1. Budget rooms, our most simplest rooms for the ones that just want a bed to sleep the night. There''s a public bathroom shared with the rest of the floor.'
  13. '2. Standard rooms, our reasonably priced rooms. Every room has a private bathroom and a TV.'
  14. '3. Suites, our luxurious room. Beside a private bathroom there''s also an extra livingroom.'
  15. '4. Presidential Suite, our most prized room with all the modern necessities. Free room service included.'
  16. act 'Finish reading':gt 'Maria1'
  17. end
  18. if nom_1 = 0:
  19. act 'Flirt':
  20. cla
  21. minut += 1
  22. 'You smile at her and ask, "What are you doing tonight?"'
  23. 'She looks at you, "Having dinner with my husband. Anything else you wanted to know?"'
  24. act 'Move away':gt 'Maria1'
  25. end
  26. if tobiQW = 2000:
  27. act 'Why is the hotel so crowded?':
  28. cla
  29. tobiQW = 2001
  30. minut += 1
  31. '"Why so the hotel so crowded today?" you ask.'
  32. '"There''s an conference on indigenous languages, they meet every year and complain about their disappearing languages." she says laughing.'
  33. act 'Move away':gt 'Maria1'
  34. end
  35. end
  36. end
  37. if nomer = 0:
  38. act 'Rent a room':
  39. cla
  40. minut += 1
  41. '"I would like to rent a room." you tell the girl at the counter.'
  42. '"Unfortunately, we have no rooms available." she replies.'
  43. act 'Walk away':gt'Maria1'
  44. !{ '- Good, What would you like to?'
  45. act 'Cheapest room':
  46. nomer = 1
  47. nom_1 = 1
  48. '"I''ll take the cheapest room."'
  49. gt'Maria1'
  50. end
  51. act 'Standard room':
  52. nomer = 2
  53. nom_1 = 1
  54. '"I''ll take the standard room."'
  55. gt'Maria1'
  56. end
  57. act 'Suite':
  58. nomer = 3
  59. nom_1 = 1
  60. '"I''ll take the suite."'
  61. gt'Maria1'
  62. end
  63. act 'Presidential Suite':
  64. nomer = 4
  65. nom_1 = 1
  66. '"I''ll take the presidential suite."'
  67. gt'Maria1'
  68. end}
  69. end
  70. end
  71. act 'Move away': minut += 1 & gt 'hotel'
  72. !{
  73. if nom_1 = 1 and flag = 0:
  74. cla
  75. *clr
  76. sto_nom = nom_o[nomer]
  77. '"I''ll stay for one night." you tell her.'
  78. '"That will be <<sto_nom>>."'
  79. act 'Pay':
  80. if sto_nom > money:
  81. msg 'You don''t have enough money'
  82. srokarend = 0
  83. nomer = 0
  84. nom_1 = 0
  85. gt 'maria1'
  86. end
  87. cla
  88. money -= sto_nom
  89. flag = 1
  90. nom_1 = 0
  91. nom_nom = rand(1, 1000)
  92. '"Thank you for staying at our hotel. Your room number is <<nom_nom>>."'
  93. act 'Goodbye': minut += 1 & gt 'hotel'
  94. end
  95. act 'Change Your Mind':
  96. nomer = 0
  97. nom_1 = 0
  98. gt 'maria1'
  99. end
  100. end
  101. if nom_1 = 0:
  102. act 'Move away': minut += 1 & gt 'hotel'
  103. end
  104. }
  105. --- Maria1 ---------------------------------