# cityTrain
if $ARGS[0] = 'start':
$metka = 'start'
$loc = 'cityTrain'
$location_type = 'public_outdoors'
$menu_loc = 'cityTrain'
$menu_arg = 'start'
menu_off = 0
*clr & cla
gs'stat'
'
City center railway station'
if hour < 9 or hour > 19:
'> src="images/locations/city/shared/trainstation/central_station_night.jpg">'
else
'> src="images/locations/city/shared/trainstation/central_station_day.jpg">'
end
'The main station for the city, it is always busy offering services to many destinations and the best place to park your car or hire a taxi.'
if car > 0 and cardrive = 2:
'In the parking lot is your <<$car>>.'
end
act 'Go to the city center':minut += 5 & gt 'down'
act 'Enter the station building': minut += 1 & gt 'cityTrain', 'inside'
end
if $ARGS[0] = 'inside':
$metka = 'inside'
$loc = 'cityTrain'
$location_type = 'public_indoors'
$menu_loc = 'cityTrain'
$menu_arg = 'inside'
menu_off = 0
*clr & cla
gs'stat'
'City center railway station'
'> src="images/locations/city/shared/trainstation/central_station_inside.jpg">'
'The grand old station is even more impressive on the inside and has a number of shops and bars as well as all the platforms and trains. '
*nl
act 'Leave the train station': minut += 1 & gt 'cityTrain', 'start'
if Trainpass_day > daystart:
'You have <> days left on your train pass.'
act 'Go to the platforms': gt 'cityTrain', 'platform'
else
act 'Go to the ticket office': gt 'cityTrain', 'tickets'
end
end
if $ARGS[0] = 'tickets':
$menu_loc = 'cityTrain'
$menu_arg = 'tickets'
menu_off = 0
*clr & cla
gs 'stat'
'Ticket office
'
'> src="images/locations/shared/train/kassa.jpg" >'
act 'Leave the ticket office':minut += 1 & gt 'cityTrain', 'inside'
act 'Buy a ticket':
cla
gs 'cityTrain', 'buy_ticket'
end
if money >= 1500 and Trainpass_day <= daystart:
act 'Buy a weekly pass (7 days - 1500 ₽) ':
cla
menu_off = 1
money -= 1500
Trainpass_day = daystart + 7
act 'Return': gt 'cityTrain', 'inside'
end
end
if money >= 5500 and Trainpass_day <= daystart:
act 'Buy a monthly pass (30day - 5500 ₽)':
cla
menu_off = 1
money -= 5500
Trainpass_day = daystart + 30
act 'Return': gt 'cityTrain', 'inside'
end
end
end
if $ARGS[0] = 'buy_ticket':
$menu_loc = 'cityTrain'
$menu_arg = 'buy_ticket'
menu_off = 0
act 'Leave the ticket office': minut += 1 & gt 'cityTrain', 'inside'
act 'Buy a ticket to the city industrial area (50 ₽)':
if money >= 50:
money -= 50
gt 'cityTrain', 'ind'
else
'You don''t have enough money for this ticket.'
end
end
act 'Buy a ticket to the old platform by the communal village (75 ₽)':
if money >= 75:
money -= 75
gt 'cityTrain', 'communal'
else
'You don''t have enough money for this ticket.'
end
end
act 'Buy a ticket to the village of Gadukino (100 ₽)':
if money >= 100:
money -= 100
gt 'cityTrain', 'village'
else
'You don''t have enough money for this ticket.'
end
end
act 'Buy a ticket to Pavlovsk (150 ₽)':
if money >= 150:
money -= 150
gt 'cityTrain', 'pavlovsk'
else
'You don''t have enough money for this ticket.'
end
end
end
if $ARGS[0] = 'platform':
$location_type = 'public_outdoors'
$menu_loc = 'cityTrain'
$menu_arg = 'platform'
menu_off = 0
gs 'stat'
'> src="images/locations/pavlovsk/trainstation/vokzalper.jpg" >'
'When you arrive at the platform, you can''t help but notice it bustling with activity. Lots of passengers are coming and going, all carrying shopping bags. It feels like it is always busy here, no matter at what time of the day it is.'
act 'Return to the station hall':gt 'cityTrain', 'inside'
act 'Take a train to the city industrial area': gt 'cityTrain', 'ind'
act 'Take a train to the old platform by the communal village': gt 'cityTrain', 'communal'
act 'Take a train to the village of Gadukino': gt 'cityTrain', 'village'
act 'Take a train to Pavlovsk': gt 'cityTrain', 'pavlovsk'
end
if $ARGS[0] = 'ind':
$loc = 'nordtrain'
$metka = 'platform'
menu_off = 1
minut += 5
gs 'stat'
if rand(1, 100) < 15: gt 'train', 'private'
if rand(1, 100) <= 10: gt 'train_incidental', 'events'
if rand(1, 100) <= 20: gt 'train', 'events'
'> src="images/locations/shared/train/indusplat.jpg" >'
'After 5 minutes, the train stops at the St. Petersburg city industrial area station.'
act 'Get off the train':
if train_event = 0 and rand(1, 100) <= 5: gt 'train_incidental', 'end'
gt 'nordtrain', 'platform'
end
end
if $ARGS[0] = 'communal':
$loc = 'train'
$metka = 'communal'
menu_off = 1
minut += 15
if rand(1, 100) <= 10: gt 'train_incidental', 'events'
if rand(1, 100) <= 20: gt 'train', 'events'
gs 'stat'
'> src="images/locations/shared/train/oldplat.jpg" >'
'After 15 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'
menu_off = 1
minut += 25
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 25 minutes, the train stops at the small station near the village of Gadukino.'
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] = 'pavlovsk':
$loc = 'pavtrainhall'
$metka = 'platform'
menu_off = 1
minut += 40
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'
if train_event = 0 and rand(1, 100) < 20: gt 'train', 'events'
'> src="images/locations/shared/train/pavplat.jpg" >'
'After 40 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 'pavtrainhall', 'platform'
end
end
--- cityTrain ---------------------------------