Motor sounds heard while at standstill
2 posters
Page 1 of 1
Motor sounds heard while at standstill
When the train is at a standstill, I can hear the motor. I have to put the reverser into Neutral in order to stop the motor sound.
Now, it could be how I have the motor section in the train.dat file set up, so I want to ask. In previous versions, I believe that the first line in the motor sections corresponded to the motor sound at 0.2 km/h. Has this changed to 0 km/h? That would explain why I get this weird result.
Now, it could be how I have the motor section in the train.dat file set up, so I want to ask. In previous versions, I believe that the first line in the motor sections corresponded to the motor sound at 0.2 km/h. Has this changed to 0 km/h? That would explain why I get this weird result.
jpnmtrmn93- Posts : 24
Join date : 2017-05-26
Re: Motor sounds heard while at standstill
Really need to see the entire train
I can't reproduce anything like this from a brief prod, which makes me suspect that it's not actually what you think it is.
Some trains use the loop sound to run base motor idle, and there's also the possibility of plugin triggered sounds too.
Edit:
To note, the first entry in the #MOTOR section has always been 0km/h , and this behaviour has not been changed.
https://openbve-project.net/documentation/HTML/train_train_dat.html#motor
Not too clear whether you're modifying something existing, or whether it's 100% new.
I can't reproduce anything like this from a brief prod, which makes me suspect that it's not actually what you think it is.
Some trains use the loop sound to run base motor idle, and there's also the possibility of plugin triggered sounds too.
Edit:
To note, the first entry in the #MOTOR section has always been 0km/h , and this behaviour has not been changed.
https://openbve-project.net/documentation/HTML/train_train_dat.html#motor
Not too clear whether you're modifying something existing, or whether it's 100% new.
Re: Motor sounds heard while at standstill
So it is how I have it set up. Because in 1.4.3 (the version I had previously), there was no sound if I recall correctly. In 1.5.3.9 (the current release), there is. From what I remember even back in the BVE 2 days the first line was for 0.2 km/h (not 0 km/h), with 800 lines corresponding to 160 km/h (not 159.8 km/h).
Something I should have mention earlier: the brakes were on and I can hear the motor, but if I move the handle to Neutral or Emergency, or if I move the reverser to Neutral (as mentioned before), the motor sound stops.
I found something here though on that link you posted: BrakeControlSystem. If I set that to 1 instead of 2, problem solved. Who knows, that could have been the same in 1.4.3.
Appreciate the help still!
Something I should have mention earlier: the brakes were on and I can hear the motor, but if I move the handle to Neutral or Emergency, or if I move the reverser to Neutral (as mentioned before), the motor sound stops.
I found something here though on that link you posted: BrakeControlSystem. If I set that to 1 instead of 2, problem solved. Who knows, that could have been the same in 1.4.3.
Appreciate the help still!
jpnmtrmn93- Posts : 24
Join date : 2017-05-26
Re: Motor sounds heard while at standstill
It's definitely been 0km/h since the BVE1 days.
What I'd guess you're hearing is sound effects for the regenerative braking (electric brake), but without the train.dat file, I can't be certain.
Presumed Explanation:
It sounds like you've got the BrakeControlSpeed variable set to 0km/h. This interacts with the BrakeControlSystem variable.
With the brakes applied in a service position, and BrakeControlSpeed set to 0km/h, the motor is presumed to be running and providing the (negligible) deceleration required to keep the train stationary against gravity etc.
Thus, it'll play the motor sound specified in the first #MOTOR position at a very quiet volume.
Moving the handle to EB, or the reverser into N will disable the regenerative brakes (as the motor is no longer in use), and hence stop the sound.
AFAIK, this hasn't changed.
If you post the train.dat file, I can always test in 1.4.3 and BVE2 / BVE4 and see if there's any difference.
What I'd guess you're hearing is sound effects for the regenerative braking (electric brake), but without the train.dat file, I can't be certain.
Presumed Explanation:
It sounds like you've got the BrakeControlSpeed variable set to 0km/h. This interacts with the BrakeControlSystem variable.
With the brakes applied in a service position, and BrakeControlSpeed set to 0km/h, the motor is presumed to be running and providing the (negligible) deceleration required to keep the train stationary against gravity etc.
Thus, it'll play the motor sound specified in the first #MOTOR position at a very quiet volume.
Moving the handle to EB, or the reverser into N will disable the regenerative brakes (as the motor is no longer in use), and hence stop the sound.
AFAIK, this hasn't changed.
If you post the train.dat file, I can always test in 1.4.3 and BVE2 / BVE4 and see if there's any difference.
Re: Motor sounds heard while at standstill
The BrakeControlSpeed is set to 5 km/h.
Here is the code I have (I changed BrakeControlSystem back to 2, what I had originally; changing this to 1 solved the problem for me).
I can also try this in 1.4.3 to see.
Here is the code I have (I changed BrakeControlSystem back to 2, what I had originally; changing this to 1 solved the problem for me).
- Code:
OPENBVE
#ACCELERATION
0.74,0.74,18,18,9
1.38,1.38,36,36,9
2.02,2.02,54,54,9
2.66,2.66,72,72,9
3.3,3.3,90,90,9
#PERFORMANCE
5.85 ; Deceleration
0.8 ; CoefficientOfStaticFriction
0 ; Reserved (not used)
0.0025 ; CoefficientOfRollingResistance
1.2 ; AerodynamicDragCoefficient
#DELAY
0.5 ; DelayPowerUp
0.2 ; DelayPowerDown
0.2 ; DelayBrakeUp
0.2 ; DelayBrakeDown
#MOVE
200 ; JerkPowerUp
200 ; JerkPowerDown
150 ; JerkBrakeUp
150 ; JerkBrakeDown
375 ; BrakeCylinderUp
200 ; BrakeCylinderDown
#BRAKE
1 ; BrakeType
2 ; BrakeControlSystem
5 ; BrakeControlSpeed
#PRESSURE
440 ; BrakeCylinderServiceMaximumPressure
700 ; BrakeCylinderEmergencyMaximumPressure
800 ; MainReservoirMinimumPressure
1000 ; MainReservoirMaximumPressure
622 ; BrakePipeNormalPressure
#HANDLE
1 ; HandleType
5 ; PowerNotches
7 ; BrakeNotches
0 ; PowerNotchReduceSteps
#CAB
900 ; X
2700 ; Y
-1200 ; Z
0 ; DriverCar
#CAR
55.8 ; MotorCarMass
4 ; NumberOfMotorCars
50.72 ; TrailerCarMass
4 ; NumberOfTrailerCars
19.375 ; LengthOfACar
1 ; FrontCarIsAMotorCar
3.02 ; WidthOfACar
3.845 ; HeightOfACar
1.602 ; CenterOfGravityHeight
6.96714 ; ExposedFrontalArea
2.32238 ; UnexposedFrontalArea
#DEVICE
1 ; Ats
1 ; Atc
1 ; Eb
0 ; ConstSpeed
0 ; HoldBrake
2 ; ReAdhesionDevice
0 ; Reserved (not used)
0 ; PassAlarm
2 ; DoorOpenMode
2 ; DoorCloseMode
#MOTOR_P1
-1,100,16
-1,100,25
-1,100,35
0,100,16
0,100,25
0,100,35
0,100,44
0,100,54
0,100,63
0,100,64
0,100,64
0,100,64
0,100,64
0,100,64
0,100,64
0,100,64
0,100,64
0,100,65
0,100,65
0,100,65
0,100,65
0,100,65
0,100,65
0,100,65
0,100,65
0,100,66
0,100,66
0,100,66
0,100,66
0,100,66
0,100,66
0,100,66
0,100,66
0,100,66
0,100,67
0,100,67
0,100,67
0,100,67
0,100,67
0,100,67
0,100,67
0,100,67
0,100,68
-1,99,64
-1,102,64
-1,104,64
-1,106,64
-1,108,64
-1,111,64
-1,113,64
-1,115,64
-1,117,64
-1,119,64
-1,122,64
-1,124,64
-1,126,64
-1,128,64
-1,131,64
-1,133,64
-1,135,64
-1,137,64
-1,139,64
-1,142,64
-1,144,64
-1,146,64
-1,148,64
-1,151,64
-1,153,64
-1,155,64
-1,157,64
-1,159,64
-1,162,64
-1,164,64
-1,99,64
-1,102,64
-1,104,64
-1,106,64
-1,108,64
-1,111,64
2,99,64
2,101,64
2,102,64
2,103,64
2,104,64
2,105,64
2,106,64
2,108,64
2,109,64
2,110,64
2,111,64
2,112,64
2,113,64
2,115,64
2,116,64
2,117,64
2,118,64
2,119,64
2,120,64
2,122,64
2,123,64
2,124,64
2,125,64
2,126,64
2,127,64
2,129,64
2,130,64
2,131,64
2,132,64
2,133,64
2,134,64
2,136,64
-1,137,64
-1,138,64
-1,139,64
-1,140,64
-1,141,64
-1,143,64
-1,144,64
-1,145,64
-1,146,64
-1,147,84
-1,148,84
-1,103,83
-1,104,82
-1,104,81
-1,105,80
-1,106,79
-1,107,78
-1,108,77
-1,109,76
-1,109,75
-1,110,74
-1,111,73
-1,112,72
-1,113,71
-1,114,70
-1,115,70
-1,115,69
-1,116,69
-1,117,68
-1,118,68
-1,119,67
-1,120,67
-1,120,66
-1,121,66
-1,122,65
-1,123,65
-1,124,64
5,110,64
5,110,64
5,111,64
5,112,64
5,113,64
5,114,64
5,115,64
5,116,64
5,117,64
5,117,64
5,118,64
5,119,64
5,120,64
5,121,64
5,122,64
5,123,64
5,123,64
5,124,64
5,125,64
5,126,64
5,127,64
5,128,64
5,129,64
5,130,64
5,130,64
5,131,64
5,132,64
5,133,64
5,134,64
5,135,64
5,136,64
5,137,64
5,137,64
5,138,64
5,139,64
5,140,64
5,141,64
5,142,64
5,143,64
5,144,64
5,144,64
5,145,64
5,146,64
5,147,64
5,148,64
5,149,64
5,150,64
5,151,64
-1,151,64
#MOTOR_P2
8,100,112
8,100,112
8,100,112
8,100,112
8,100,112
8,100,112
8,100,112
8,100,112
8,100,112
8,100,112
8,100,99
8,100,79
8,100,59
8,100,39
8,100,19
-1,100,0
-1,100,2
-1,100,4
-1,100,6
-1,100,9
-1,100,11
-1,100,13
-1,100,16
-1,100,18
-1,100,20
-1,100,23
-1,100,25
-1,100,27
-1,100,30
-1,100,32
-1,100,34
-1,100,37
-1,100,39
-1,100,41
-1,100,44
-1,100,46
-1,100,48
-1,100,51
-1,100,53
1,99,64
1,102,64
1,105,64
1,107,64
1,110,64
1,112,64
1,115,64
1,117,64
1,120,64
1,122,64
1,125,64
1,128,64
1,130,64
1,133,64
1,135,64
1,138,64
1,140,64
1,143,64
1,145,64
1,148,64
1,151,64
1,153,64
1,156,64
1,158,64
1,161,64
1,163,64
1,166,64
1,168,64
1,171,64
1,174,64
1,176,64
1,179,64
1,181,64
1,184,64
1,186,64
1,189,64
1,191,64
1,194,64
1,197,64
1,199,64
1,202,64
-1,204,64
-1,207,64
-1,209,64
-1,212,64
-1,214,64
-1,217,85
-1,121,85
-1,122,85
-1,123,85
-1,125,85
-1,126,85
-1,128,85
-1,129,85
-1,130,85
-1,132,85
-1,133,85
-1,91,85
-1,92,85
-1,93,85
-1,94,85
-1,95,85
-1,96,19
-1,97,43
-1,98,66
-1,99,85
-1,100,85
-1,101,85
3,99,64
3,100,64
3,101,64
3,102,64
3,104,64
3,105,64
3,107,64
3,108,64
3,110,64
3,111,64
3,112,64
3,114,64
3,115,64
3,117,64
3,118,64
3,120,64
3,121,64
3,122,64
3,124,64
3,125,64
3,127,64
3,128,64
3,130,64
3,131,64
3,132,64
3,134,64
3,135,64
3,137,64
3,138,64
3,140,64
3,141,64
3,142,64
3,144,64
3,145,64
3,147,64
3,148,64
3,150,64
3,151,64
3,152,64
3,154,64
3,155,64
3,157,64
3,158,64
4,69,34
-1,70,35
-1,70,37
-1,70,39
-1,71,40
-1,71,42
-1,72,43
-1,72,45
-1,73,45
-1,73,46
-1,74,46
-1,74,47
-1,75,47
-1,75,48
-1,76,49
-1,76,49
-1,76,50
-1,77,50
-1,77,51
-1,78,51
-1,78,52
-1,79,53
-1,79,53
-1,80,54
-1,80,54
-1,81,55
-1,81,55
-1,82,56
-1,82,57
-1,83,57
-1,83,58
-1,83,58
-1,84,59
-1,84,60
-1,85,59
-1,85,59
-1,86,58
-1,86,58
-1,87,57
-1,87,57
-1,88,56
-1,88,56
-1,89,55
-1,89,55
6,132,45
6,132,45
6,133,45
6,133,45
6,134,45
6,135,44
6,135,44
6,136,44
6,136,44
6,137,44
6,137,44
6,138,44
6,138,44
6,139,43
6,139,43
6,140,43
6,140,43
6,141,43
6,141,43
6,142,43
6,143,43
6,143,42
6,144,42
6,144,42
6,145,42
6,145,42
6,146,42
6,146,42
6,147,42
6,147,42
6,148,41
6,148,41
6,149,41
6,149,41
6,150,41
6,150,41
6,151,41
6,151,41
6,151,40
6,152,40
6,152,40
6,152,40
6,153,40
6,153,40
6,153,40
6,153,40
6,154,39
6,154,39
6,154,39
6,155,39
6,155,39
6,155,39
6,155,39
6,156,39
6,156,38
6,156,38
6,156,38
6,157,38
6,157,38
6,158,38
6,158,38
6,158,38
6,158,38
6,159,37
6,159,37
6,159,37
6,159,37
6,159,37
6,160,37
6,160,37
6,160,37
6,160,36
6,160,36
6,161,36
6,161,36
6,161,36
6,161,36
6,161,35
6,162,35
6,162,35
6,162,35
6,162,35
6,162,34
6,163,34
6,163,34
6,163,34
6,163,34
6,163,34
6,164,34
6,164,33
6,164,33
6,164,33
6,165,33
6,165,33
6,165,32
6,165,32
6,165,32
6,166,32
6,166,32
6,166,32
6,166,32
6,166,31
6,167,31
6,167,31
6,167,31
6,167,31
6,167,30
6,168,30
6,168,30
6,168,30
6,168,30
6,168,30
6,169,30
6,169,29
6,169,29
6,169,29
6,169,29
6,170,29
6,170,29
6,170,29
6,170,28
6,171,28
6,171,28
6,171,28
6,171,28
6,171,27
6,172,27
6,172,27
6,172,27
6,172,27
6,172,26
6,173,26
6,173,26
6,173,26
6,173,26
6,173,25
6,174,25
6,174,25
6,174,25
6,174,25
6,174,24
6,175,24
6,175,24
6,175,24
6,175,24
6,175,23
6,176,23
6,176,23
6,176,23
6,176,23
6,177,22
6,177,22
6,177,22
6,177,22
6,177,22
6,178,21
6,178,21
6,178,21
6,178,21
6,178,21
6,179,20
6,179,20
6,179,20
6,179,20
6,179,20
6,180,19
6,180,19
6,180,19
6,180,19
6,180,19
6,181,18
6,181,18
6,181,18
6,181,18
6,181,18
6,182,18
6,182,17
6,182,17
6,182,17
6,182,17
6,183,17
6,183,17
6,183,16
6,184,16
6,184,16
6,184,16
6,184,16
6,184,16
6,184,15
6,185,15
6,185,15
6,185,15
6,185,15
6,185,15
6,186,14
6,186,14
6,186,14
6,186,14
6,186,14
6,187,14
6,187,13
6,187,13
6,187,13
6,187,13
6,187,13
6,188,13
6,188,12
6,188,12
6,189,12
6,189,12
6,189,12
6,189,12
6,189,11
6,190,11
6,190,11
6,190,11
6,190,10
6,190,10
6,191,10
6,191,10
6,191,10
6,191,10
6,191,10
6,191,10
6,192,10
6,192,9
6,192,9
6,192,9
6,192,9
6,192,9
6,193,9
6,193,9
6,193,9
6,193,9
6,193,9
6,193,8
6,194,8
6,194,8
6,194,8
6,194,8
6,194,8
6,195,8
6,195,8
6,195,8
6,195,8
6,195,7
6,195,7
6,196,7
6,196,7
6,196,7
6,196,7
6,196,7
6,196,7
6,197,7
6,197,6
6,197,6
6,197,6
6,197,6
6,197,6
6,198,6
6,198,6
6,198,6
6,198,6
6,198,6
6,198,6
6,198,5
6,198,5
6,198,5
6,198,5
6,198,5
6,198,5
6,198,5
6,198,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
#MOTOR_B1
-1,100,112
-1,100,112
-1,100,112
-1,100,112
-1,100,112
-1,100,112
-1,100,112
-1,100,112
-1,100,112
-1,100,112
-1,100,99
-1,100,79
-1,100,59
-1,100,39
-1,100,19
-1,100,0
-1,100,2
-1,50,4
9,51,6
9,52,9
9,53,11
9,55,13
9,56,16
9,57,18
9,58,20
9,60,23
9,61,25
9,62,27
9,63,30
9,65,32
9,66,34
9,67,37
9,68,39
9,70,41
9,71,44
9,72,46
9,73,48
9,75,51
9,76,53
9,77,64
9,78,64
9,80,64
9,81,64
9,82,64
9,83,64
9,85,64
9,86,64
9,87,64
9,88,64
9,90,64
9,91,64
9,92,64
9,93,64
9,95,64
9,96,64
9,97,64
9,98,64
9,100,64
9,101,64
9,102,64
9,103,64
9,105,64
9,106,64
9,107,64
9,108,64
9,110,64
9,111,64
9,112,64
9,113,64
9,115,64
9,116,64
9,117,64
9,118,64
9,120,64
9,121,64
9,122,64
9,123,64
9,125,64
9,126,64
9,127,64
9,128,64
9,130,64
9,131,64
9,132,64
9,133,64
-1,126,85
-1,128,85
-1,122,85
-1,123,85
-1,125,85
-1,126,85
-1,128,85
-1,129,85
-1,130,85
-1,132,85
-1,133,85
-1,91,85
-1,92,85
-1,93,85
-1,94,85
-1,95,85
-1,96,19
-1,97,43
-1,98,66
-1,99,85
-1,100,85
-1,101,85
-1,99,64
3,100,64
3,101,64
3,102,64
3,104,64
3,105,64
3,107,64
3,108,64
3,110,64
3,111,64
3,112,64
3,114,64
3,115,64
3,117,64
3,118,64
3,120,64
3,121,64
3,122,64
3,124,64
3,125,64
3,127,64
3,128,64
3,130,64
3,131,64
3,132,64
3,134,64
3,135,64
3,137,64
3,138,64
3,140,64
3,141,64
3,142,64
3,144,64
3,145,64
3,147,64
3,148,64
3,150,64
3,151,64
3,152,64
3,154,64
3,155,64
3,157,64
-1,158,64
-1,69,34
-1,70,35
-1,70,37
-1,70,39
-1,71,40
-1,71,42
-1,72,43
-1,72,45
-1,73,45
-1,73,46
-1,74,46
-1,74,47
-1,75,47
-1,75,48
-1,76,49
-1,76,49
-1,76,50
-1,77,50
-1,77,51
-1,78,51
-1,78,52
-1,79,53
-1,79,53
-1,80,54
-1,80,54
-1,81,55
-1,81,55
-1,82,56
-1,82,57
-1,83,57
-1,83,58
-1,83,58
-1,84,59
-1,84,60
-1,85,59
-1,85,59
-1,86,58
-1,86,58
-1,87,57
-1,87,57
-1,88,56
-1,88,56
-1,89,55
-1,89,55
6,132,45
6,132,45
6,133,45
6,133,45
6,134,45
6,135,44
6,135,44
6,136,44
6,136,44
6,137,44
6,137,44
6,138,44
6,138,44
6,139,43
6,139,43
6,140,43
6,140,43
6,141,43
6,141,43
6,142,43
6,143,43
6,143,42
6,144,42
6,144,42
6,145,42
6,145,42
6,146,42
6,146,42
6,147,42
6,147,42
6,148,41
6,148,41
6,149,41
6,149,41
6,150,41
6,150,41
6,151,41
6,151,41
6,151,40
6,152,40
6,152,40
6,152,40
6,153,40
6,153,40
6,153,40
6,153,40
6,154,39
6,154,39
6,154,39
6,155,39
6,155,39
6,155,39
6,155,39
6,156,39
6,156,38
6,156,38
6,156,38
6,157,38
6,157,38
6,158,38
6,158,38
6,158,38
6,158,38
6,159,37
6,159,37
6,159,37
6,159,37
6,159,37
6,160,37
6,160,37
6,160,37
6,160,36
6,160,36
6,161,36
6,161,36
6,161,36
6,161,36
6,161,35
6,162,35
6,162,35
6,162,35
6,162,35
6,162,34
6,163,34
6,163,34
6,163,34
6,163,34
6,163,34
6,164,34
6,164,33
6,164,33
6,164,33
6,165,33
6,165,33
6,165,32
6,165,32
6,165,32
6,166,32
6,166,32
6,166,32
6,166,32
6,166,31
6,167,31
6,167,31
6,167,31
6,167,31
6,167,30
6,168,30
6,168,30
6,168,30
6,168,30
6,168,30
6,169,30
6,169,29
6,169,29
6,169,29
6,169,29
6,170,29
6,170,29
6,170,29
6,170,28
6,171,28
6,171,28
6,171,28
6,171,28
6,171,27
6,172,27
6,172,27
6,172,27
6,172,27
6,172,26
6,173,26
6,173,26
6,173,26
6,173,26
6,173,25
6,174,25
6,174,25
6,174,25
6,174,25
6,174,24
6,175,24
6,175,24
6,175,24
6,175,24
6,175,23
6,176,23
6,176,23
6,176,23
6,176,23
6,177,22
6,177,22
6,177,22
6,177,22
6,177,22
6,178,21
6,178,21
6,178,21
6,178,21
6,178,21
6,179,20
6,179,20
6,179,20
6,179,20
6,179,20
6,180,19
6,180,19
6,180,19
6,180,19
6,180,19
6,181,18
6,181,18
6,181,18
6,181,18
6,181,18
6,182,18
6,182,17
6,182,17
6,182,17
6,182,17
6,183,17
6,183,17
6,183,16
6,184,16
6,184,16
6,184,16
6,184,16
6,184,16
6,184,15
6,185,15
6,185,15
6,185,15
6,185,15
6,185,15
6,186,14
6,186,14
6,186,14
6,186,14
6,186,14
6,187,14
6,187,13
6,187,13
6,187,13
6,187,13
6,187,13
6,188,13
6,188,12
6,188,12
6,189,12
6,189,12
6,189,12
6,189,12
6,189,11
6,190,11
6,190,11
6,190,11
6,190,10
6,190,10
6,191,10
6,191,10
6,191,10
6,191,10
6,191,10
6,191,10
6,192,10
6,192,9
6,192,9
6,192,9
6,192,9
6,192,9
6,193,9
6,193,9
6,193,9
6,193,9
6,193,9
6,193,8
6,194,8
6,194,8
6,194,8
6,194,8
6,194,8
6,195,8
6,195,8
6,195,8
6,195,8
6,195,7
6,195,7
6,196,7
6,196,7
6,196,7
6,196,7
6,196,7
6,196,7
6,197,7
6,197,6
6,197,6
6,197,6
6,197,6
6,197,6
6,198,6
6,198,6
6,198,6
6,198,6
6,198,6
6,198,6
6,198,5
6,198,5
6,198,5
6,198,5
6,198,5
6,198,5
6,198,5
6,198,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,5
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,1
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,0
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,4
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,3
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
6,199,2
#MOTOR_B2
0,100,16
0,100,25
0,100,35
0,100,44
0,100,54
0,100,63
0,100,64
0,100,64
0,100,64
0,100,64
0,100,64
0,100,64
0,100,64
0,100,64
0,100,65
0,100,65
0,100,65
0,100,65
0,100,65
0,100,65
-1,100,112
-1,100,99
-1,100,79
-1,100,59
-1,100,39
-1,100,19
-1,100,0
-1,100,2
-1,100,64
-1,100,16
-1,100,25
-1,100,35
-1,100,44
-1,100,54
-1,100,63
-1,100,64
-1,100,64
-1,100,64
-1,100,64
-1,100,64
-1,100,64
-1,100,64
-1,100,68
-1,99,64
-1,102,64
-1,104,64
-1,106,64
-1,108,64
-1,111,64
-1,113,64
-1,115,64
-1,117,64
-1,119,64
-1,122,64
-1,124,64
-1,126,64
-1,128,64
-1,131,64
-1,133,64
-1,135,64
-1,137,64
-1,139,64
-1,142,64
-1,144,64
-1,146,64
-1,148,64
-1,151,64
-1,153,64
-1,155,64
-1,157,64
-1,159,64
-1,162,64
-1,164,64
-1,99,64
-1,102,64
-1,104,64
-1,106,64
-1,108,64
-1,111,64
2,90,64
2,91,64
2,92,64
2,94,64
2,95,64
2,96,64
2,98,64
2,99,64
2,100,64
2,102,64
2,103,64
2,105,64
2,106,64
2,107,64
2,109,64
2,110,64
2,111,64
2,113,64
2,114,64
2,115,64
2,117,64
2,118,64
2,120,64
2,121,64
2,122,64
2,124,64
2,125,64
2,126,64
2,128,64
2,129,64
-1,130,64
-1,132,64
-1,133,64
-1,138,64
-1,139,64
-1,140,64
-1,141,64
-1,143,64
-1,144,64
-1,145,64
-1,146,64
-1,147,84
-1,148,84
-1,103,83
-1,104,82
-1,104,81
-1,105,80
-1,106,79
-1,107,78
-1,108,77
-1,109,76
-1,109,75
-1,110,74
-1,111,73
-1,112,72
-1,113,71
-1,114,70
-1,115,70
-1,115,69
-1,116,69
-1,117,68
-1,118,68
-1,119,67
-1,120,67
-1,120,66
-1,121,66
-1,122,65
-1,123,65
-1,124,64
5,110,64
5,110,64
5,111,64
5,112,64
5,113,64
5,114,64
5,115,64
5,116,64
5,117,64
5,117,64
5,118,64
5,119,64
5,120,64
5,121,64
5,122,64
5,123,64
5,123,64
5,124,64
5,125,64
5,126,64
5,127,64
5,128,64
5,129,64
5,130,64
5,130,64
5,131,64
5,132,64
5,133,64
5,134,64
5,135,64
5,136,64
5,137,64
5,137,64
5,138,64
5,139,64
5,140,64
5,141,64
5,142,64
5,143,64
5,144,64
5,144,64
5,145,64
5,146,64
5,147,64
5,148,64
5,149,64
5,150,64
5,151,64
-1,151,64
I can also try this in 1.4.3 to see.
jpnmtrmn93- Posts : 24
Join date : 2017-05-26
Similar topics
» Trains with different motor sounds for different cars
» Now! the OpenBVE's Motor and Brake sound tracks are become unlimited !!!!!
» New Motor Sound Method
» BVE5 motor sound tables not working
» OpenBVE Motor Sound Editor won't open
» Now! the OpenBVE's Motor and Brake sound tracks are become unlimited !!!!!
» New Motor Sound Method
» BVE5 motor sound tables not working
» OpenBVE Motor Sound Editor won't open
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum