How to make rain in bve

Pages: (1/1)

GoYankees:

If you have a train   that works with rain, when dont you drive it in rain instead of the same weather?  You'll learn how in this tutorial.  First, go to your bve directory. it should be C:\Program Files\BVE\Railway\Route.
Then chose any csv route (CSV!!) you want to add rain.  Open it up with notepad.  Find the with track section.  I will use the NYCT-L as an example.  The with track section should be like:
Code:
--
.height 0.3,
0,.adhesion 255,.back 3,.railtype 0;3,.ground 0,.railstart 4;10.000000;0.000000;4,.railstart 2;15.000000;1.000000;4,.railstart 3;19.000000;1.000000;4,
--
then add .beacon 21;0;0;n, (n is how hard the rain is falling, from 0 to 99)
your with track should now look like this:
Code:
--
with track
.height 0.3,
0,.adhesion 255,.back 3,.railtype 0;3,.ground 0,.railstart 4;10.000000;0.000000;4,.railstart 2;15.000000;1.000000;4,.railstart 3;19.000000;1.000000;4,
.beacon 21;0;0;70,
--

when you drive, it will look unreal with clear skies, so add fog. use this command
.fog -100;500;102;102;102,
now you are done and the with track should look like this:
Code:
--
with track
.height 0.3,
0,.adhesion 255,.back 3,.railtype 0;3,.ground 0,.railstart 4;10.000000;0.000000;4,.railstart 2;15.000000;1.000000;4,.railstart 3;19.000000;1.000000;4,
.beacon 21;0;0;70,
.fog -100;500;102;102;102,
--
credits go to kevin and dennis lance for telling me how to add rain and fog

Pages: (1/1)