Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I have changed my station speeds to 160 & 450.
runFn = function(settings)
addModifier("loadTrack", function (fileName, data)
if fileName == "res/config/track/standard.lua" then
data.yearTo = 1849
data.speedLimit = 160 / 3.6 <----(Changed from 30 to 160)
end
if fileName == "res/config/track/high_speed.lua" then
data.yearTo = 1849
data.speedLimit = 450 / 3.6 <----(Changed from 50 to 450)
end
return data
end)
IMPORTANT THINGS TO REMEMBER!!!
1. When you are placing or editing a station in order to use you're new station track speed. You need to select the track type "20" or "30". All other track types give you a speed of only 30 or 50 (idk y this happens).
2. All speed values are in km/h. So if using mph, I suggest converting you're mph value into km/h using google or etc. (taking nearest whole number or to the 1st decimal point).
I hope this helps people.
& happy Fevering.
PS Can't wait for Transport Fever 2
Folder path: \Steam\steamapps\workshop\content\446800\946897147
or
Locate Folder: 946897147
Folder should contain another folder called "res" & 2 LUA files named "mod" & "strings". Click on the "mod" LUA file. (Open with notepad or etc)
In LUA file go to section that looks like this:
runFn = function(settings)
addModifier("loadTrack", function (fileName, data)
if fileName == "res/config/track/standard.lua" then
data.yearTo = 1849
data.speedLimit = 30 / 3.6 <--(Change "30" to what you want)
end
if fileName == "res/config/track/high_speed.lua" then
data.yearTo = 1849
data.speedLimit = 50 / 3.6 <--(Change"50" to what you want)
end
return data
end)
The 2 values you want to change are shown above (or located on the LUA file at lines 59 and 63. Both in column 6).
Once done save the "mod" LUA file.
Open TF, this change shouldn't conflict with existing save games.