|
@@ -179,12 +179,14 @@ if $ARGS[0] = 'salon':
|
|
|
act 'Go to local destination': gs 'carF', 'pav'
|
|
|
act 'Go to the city':
|
|
|
minut += 65
|
|
|
- msg 'You drive for more than an hour on the highway before you get to the city.'
|
|
|
+ *nl
|
|
|
+ 'You drive for more than an hour on the highway before you get to the city.'
|
|
|
gs 'carF', 'city'
|
|
|
end
|
|
|
act 'Go to another destination':
|
|
|
minut += 30
|
|
|
- msg 'You drive out of Pavlovsk.'
|
|
|
+ *nl
|
|
|
+ 'You drive out of Pavlovsk.'
|
|
|
gs 'carF', 'other'
|
|
|
end
|
|
|
elseif cardrive <= 11 or cardrive = 25:
|
|
@@ -192,24 +194,28 @@ if $ARGS[0] = 'salon':
|
|
|
act 'Go to another city destination': gs 'carF', 'city'
|
|
|
act 'Go to Pavlosvsk':
|
|
|
minut += 65
|
|
|
- msg 'You drive for more than an hour on the highway before you get to the town of Pavlovsk.'
|
|
|
+ *nl
|
|
|
+ 'You drive for more than an hour on the highway before you get to the town of Pavlovsk.'
|
|
|
gs 'carF', 'pav'
|
|
|
end
|
|
|
act 'Go to another destination':
|
|
|
minut += 30
|
|
|
- msg 'You drive out of the city.'
|
|
|
+ *nl
|
|
|
+ 'You drive out of the city.'
|
|
|
gs 'carF', 'other'
|
|
|
end
|
|
|
else
|
|
|
car_town = 2
|
|
|
act 'Go to a city destination':
|
|
|
minut += 30
|
|
|
- msg 'You drive for half an hour on the highway before you get to the city.'
|
|
|
+ *nl
|
|
|
+ 'You drive for half an hour on the highway before you get to the city.'
|
|
|
gs 'carF', 'city'
|
|
|
end
|
|
|
act 'Go to a Pavlosvsk destination':
|
|
|
minut += 30
|
|
|
- msg 'You drive for half an hour on the highway before you get to the town of Pavlovsk.'
|
|
|
+ *nl
|
|
|
+ 'You drive for half an hour on the highway before you get to the town of Pavlovsk.'
|
|
|
gs 'carF', 'pav'
|
|
|
end
|
|
|
act 'Go to another destination': gs 'carF', 'other'
|