1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # pavComplexOld
- ! apt house entry hallway
- if $ARGS[0] = 'etaj_1':
- $menu_loc = 'pavComplexOld'
- $menu_arg = 'etaj_1'
- menu_off = 0
- minut += 2
- gs 'stat'
- '<center><h3>old apartment building</h3></center>'
- '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/apthallway.jpg"></center>'
- ''
- 'An old, common russian apartment house, lacking lots of years of repairs and maintenance.'
- 'The entry doors are left unlocked and even if they werent, they look like fall apart any moment.'
-
- 'Inside is a board with <a href="exec:gt ''pavComplexOld'', ''advert''">announcements</a> for the tenants.'
- act 'Leave the building':gt 'pavcomplex', 'start'
-
- act 'Take the elevator':
- *clr & cla
- minut +=1
- menu_off = 1
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/liftnotwork.jpg"></center>'
- 'The building supervisor put a sign on the elevator: "Dear tenants, the elevator is out of order for today. Don''t worry, I should have it working again by tomorrow!". Unfortunately, that sign has been there for years.'
- act 'Leave': gt 'pavComplexOld', 'etaj_1'
- end
-
- act 'Go up to the second floor':
- *clr & cla
- minut +=1
- menu_off = 1
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/apartment/stairs/brokenstairs.jpg"></center>'
- 'The stairs are as rundown as the rest of the apartment building.Thankfully there is no one I want to see on the floor above.'
- act 'Turn back': gt 'pavComplexOld', 'etaj_1'
- end
- end
- if $ARGS[0] = 'advert':
- $menu_loc = 'pavComplexOld'
- $menu_arg = 'advert'
- menu_off = 0
- minut += 2
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/pavlovsk/resident/sharedapt/board.jpg"></center>'
- ''
- act 'Continue':gt 'pavComplexOld', 'etaj_1'
- end
- --- pavComplexOld ---------------------------------
|