123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- # Maria1
- clr
- '<right><img <<$set_imgh>> src="images/locations/city/industrial/casino/metrd.jpg"></right>'
- 'You are standing at the front reception and you smiling young girl behind the counter'
- '"How can I help you?"'
- act 'See the description of the rooms':
- cla
- 'The choice available to 4 types of rooms:'
- '1. Budget Room'
- '2. Standard rooms'
- '3. Suite'
- '4. Presidential Suite'
- act 'Finish reading':gt 'Maria1'
- end
- if nom_1 = 0:
- act 'Flirt':
- cla
- '- What are you doing tonight?'
- '- Meeting with her husband. Anything else?'
- act 'Move away':gt 'Maria1'
- end
- if tobiQW = 2000:
- act 'Why is the hotel so crowded?':
- cla
- tobiQW = 2001
- '- Why so crowded in the hotel?'
- '- Then stop members of Congress rare languages, as they call themselves quack.'
- act 'Move away':gt 'Maria1'
- end
- end
- end
- if nomer = 0:
- act 'Stay':
- cla
- '"I would like to stay."'
- '"Unfortunately, we have no rooms available."'
- act 'Done':gt'Maria1'
- !{ '- Good, What would you like to?'
- act 'Cheapest room':
- nomer = 1
- nom_1 = 1
- '- Cheapest room'
- gt'Maria1'
- end
- act 'Standard room':
- nomer = 2
- nom_1 = 1
- '- Standard room'
- gt'Maria1'
- end
- act 'Suite':
- nomer = 3
- nom_1 = 1
- '- Suite'
- gt'Maria1'
- end
- act 'Presidential Suite':
- nomer = 4
- nom_1 = 1
- '- Presidential Suite'
- gt'Maria1'
- end}
- end
- end
- act 'Move away':gt 'hotel'
- !{
- if nom_1 = 1 and flag = 0:
- cla
- *clr
- sto_nom = nom_o[nomer]
- '- You shoot a room for one night.'
- '- It will cost <<sto_nom>>'
- act 'Pay':
- if sto_nom > money:
- msg 'Not enough money'
- srokarend = 0
- nomer = 0
- nom_1 = 0
- gt 'maria1'
- end
- cla
- money -= sto_nom
- flag = 1
- nom_1 = 0
- nom_nom = rand(1, 1000)
- 'Thank you for using our services'
- 'Your room <<nom_nom>>'
- act 'Goodbye':gt 'rack'
- end
- act 'Change Your Mind':
- nomer = 0
- nom_1 = 0
- gt 'maria1'
- end
- end
- if nom_1 = 0:
- act 'Move away':gt 'hotel'
- end
- }
- --- Maria1 ---------------------------------
|