Soil compactor on biogas plants that are used for compressing the silos.
- 1 Likes
- 7 Comments
- 2080 Downloads
- 1 Downloads in
-
7 years ago
Soil compactor on biogas plants that are used for compressing the silos.
mailman,modder,maus
COMMENTS
dont work :( fake
@digiplaza I don't think 1360 people thought that...
Error: Can't load resource 'data/vehicles/steerable/liebherr/liebherrL538_run.wav'.
Error: Can't load sample 'data/vehicles/steerable/liebherr/liebherrL538_run.wav'.
Error: Running LUA method 'update'.
D:/Neo/Documents/My Games/FarmingSimulator2017/mods/FS17_ForRealModule02_TireDirt/TireDirt.lua:115: attempt to index field 'washableNodes' (a nil value)
For user of mod : 4REAL MODULE 02 - DIRT
• Unzip .zip archive file
• Edit : TireDirt.lua script
• In TireDirt method "postLoad" identified by line : "function TireDirt:postLoad(savegame)" at line 44
• In the thrid "for loop" add the following "if conditional structure" to obtain
>>> See nexts comments
The third "for loop" before modification at line 112
for _,wheel in pairs(self.wheels) do
for _,node in pairs(wheel.washableNodes) do
self.washableNodes[node] = nil;
end
end
The third "for loop" AFTER modification at line 112
for _,wheel in pairs(self.wheels) do
for _,node in pairs(wheel.washableNodes) do
if node != nil then
self.washableNodes[node] = nil;
end
end
end
Add "if node != nil then" to prevent error "attempt to index field 'washableNodes' (a nil value)"
For resources error, i copied FS15 audio file in FS17 folder
Write a comment