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
function getGasMultiple(CarType)
if(CarType == "Firetruck") then
return 0.25;
elseif(CarType == "Tank") then
return 0.50;
elseif(CarType == "MArmor") then
return 0.20;
elseif(CarType == "MTruck") then
return 0.20;
elseif(CarType == "MJeep") then
return 0.15;
elseif(CarType == "WhiteCar") then
return 0.10;
elseif(CarType == "Beetle") then
return 0.10;
elseif(CarType == "SportsCar") then
return 0.20;
elseif(CarType == "Pickup") then
return 0.15;
elseif(CarType == "Van") then
return 0.15;
elseif(CarType == "Ambulance") then
return 0.18;
elseif(CarType == "Hummer") then
return 0.18;
elseif(CarType == "PCar") then
return 0.15;
elseif(CarType == "Plane") then
return 0.20;
else
return 0.15;
end
end
----------------------------------------
Line 241 Unchnaged GasUsageMultiple = 1.0;
Now would be nice to have gas meter update more frequently. Every 1%. NowI ride for long,long time and meter shows nothing. Then it finally shows like 5% drop.
Can't find that 'GasGuzzling' thing in DriveCars.lua. Does it make meter readings update more frequently or change gas usage of all cars?