# vokzalholle
if $ARGS[0] = '':
$metka = $ARGS[0]
$loc = $CURLOC
$location_type = 'public_indoors'
CLOSE ALL
if sound = 0:PLAY 'sound/vokzal.mp3',30
cls
gs'stat'
'
> src="images/locations/shared/train/vokzalholle.jpg" >'
'There is a path leading off in to the distance, in the direction of the lake.'
act 'Leave the station building':gt 'vokzal' & minut+=5
*nl
if Trainpass_day > daystart:
'You have <> days left on your train pass.'
act 'Go to the platforms': gt 'vokzalper'
else
act 'Go to the ticket office': gt 'vokzalholle', 'ticket'
end
act 'Go to the restrooms':gt 'vokzaltoilet' & minut+=5
end
if $ARGS[0] = 'ticket':
cls
gs 'stat'
'Ticket office
'
'> src="images/locations/shared/train/kassa.jpg">'
if money >= 50:
act 'Buy a ticket':
cla
gs 'vokzalholle', 'buy_ticket'
end
end
if money >= 1500 and Trainpass_day <= daystart:
act 'Buy a weekly pass (7 days - 1500 ₽) ':
cla
money -= 1500
Trainpass_day = daystart + 7
act 'Return': gt 'vokzalholle', ''
end
end
if money >= 5500 and Trainpass_day <= daystart:
act 'Buy a monthly pass (30day - 5500 ₽)':
cla
money -= 5500
Trainpass_day = daystart + 30
act 'Return': gt 'vokzalholle', ''
end
end
act 'Leave the ticket office':minut += 1 & gt 'vokzalholle', ''
end
if $ARGS[0] = 'buy_ticket':
if money >= 50:
act 'Buy a ticket to the city center (50 ₽)':
money -= 50
gt 'vokzalholle', 'centre'
end
end
if money >= 50:
act 'Buy a ticket to the old platform by the communal village (50 ₽)':
money -= 100
gt 'vokzalholle', 'communal'
end
end
if money >= 75:
act 'Buy a ticket to the village of Gadyukino (75 ₽)':
money -= 75
gt 'vokzalholle', 'village'
end
end
if money >= 100:
act 'Buy a ticket to the old town (100 ₽)':
money -= 100
gt 'vokzalholle', 'oldtown'
end
end
if money >= 125:
act 'Buy a ticket to Pavlovsk (125 ₽)':
money -= 125
gt 'vokzalholle', 'pavlovsk'
end
end
act 'Leave the ticket office': gt 'vokzalholle', ''
end
if $ARGS[0] = 'centre':
$loc = 'cityTrain'
$metka = 'inside'
cls
minut += 5
gs 'stat'
'> src="images/locations/shared/train/electri.jpg">'
'You pay for the ticket and board the next train going to the city center.'
'After 5 minutes, you see the office blocks and shops at the heart of the city. The train stops at its final destination, the busy station in the city center.'
act 'Get off the train at this station':
if train_event = 0 and rand(1, 100) <= 5: gt 'train_incidental', 'end'
gt 'cityTrain', 'inside'
end
end
if $ARGS[0] = 'communal':
$loc = 'train'
$metka = 'communal'
minut += 10
if rand(1, 100) < 20: gt 'train', 'events'
gs 'stat'
'> src="images/locations/shared/train/oldplat.jpg" >'
'After 10 minutes you arrive at an old railway platform near the communal village.'
act 'Get off the train':
if train_event = 0 and rand(1, 100) <= 5: gt 'train_incidental', 'end'
gt 'train', 'communal'
end
end
if $ARGS[0] = 'village':
$loc = 'train'
$metka = 'village'
minut += 20
if rand(1, 100) <= 10: gt 'train_incidental', 'events'
if rand(1, 100) < 20: gt 'train', 'events'
gs 'stat'
'> src="images/locations/shared/train/gadplat.jpg" >'
'After 20 minutes, the train stops at the small station near the village of Gadyukino.'
act 'Get off the train':
if train_event = 0 and rand(1, 100) <= 5: gt 'train_incidental', 'end'
gt 'train', 'village'
end
end
if $ARGS[0] = 'oldtown':
$loc = 'train'
$metka = 'oldtown'
minut += 30
if rand(1, 100) <= 10: gt 'train_incidental', 'events'
if rand(1, 100) < 20: gt 'train', 'events'
gs 'stat'
'> src="images/locations/shared/train/pushplat.jpg" >'
'After 30 minutes, the train stops at old platform by the old town of Pushkin. Famous for its extensive park and old historic buildings, the locals are known to be eccentric but that adds to the charm.'
act 'Get off the train':
if train_event = 0 and rand(1, 100) <= 5: gt 'train_incidental', 'end'
gt 'train', 'oldtown'
end
end
if $ARGS[0] = 'pavlovsk':
$loc = 'vokzalperG'
$metka = ''
minut += 35
if rand(1, 100) < 15: gt 'train', 'private'
if rand(1, 100) < 30: gt 'train', 'Gopnik'
if rand(1, 100) <= 10: gt 'train_incidental', 'events'
if rand(1, 100) <= 20: gt 'train', 'events'
gs 'stat'
'> src="images/locations/shared/train/pavplat.jpg" >'
'After 35 minutes, you see the town of Pavlovsk approaching. Pavlovsk Castle is an impressive sight, even from a long distance. The train stops at its final destination, a platform in Pavlovsk station.'
act 'Get off the train':
if train_event = 0 and rand(1, 100) <= 5: gt 'train_incidental', 'end'
gt 'vokzalperG'
end
end
--- vokzalholle ---------------------------------