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
Then from here, go to mods\SlowerCarWear\media\lua\server, open SlowerCarWear.lua with notepad.
find the line with "if part:getCondition() > 0 and ZombRandFloat(0, 100) < chance then"
change this line to:
"if true then"
make sure ONLY replace the text I mentioned, even the spaces on the same line before the text should not be touched.
Next, go to the line with "part:setCondition(part:getCondition() - 1);"
change the value -1 to something smaller, like -20, so it would be like:
"part:setCondition(part:getCondition() - 20);"
basically, after this change, the degrade will ALWAYS happen, and each time it happens, lower the condition by 20. If the code works, your car will now be totaled within 5 seconds when you drive it, so make sure to backup your save file.
Like I said under compatibility, my mod modifies the vanilla function. It wont work if cars don't use that modified vanilla car degrade function because they have implemented their own car degrade function.