Soil Compactor v1.3

DESCRIPTION

Soil compactor on biogas plants that are used for compressing the silos.

CREDITS

mailman,modder,maus

Similar modifications
COMMENTS

Commented on 2021-03-20 15:40:10

dont work :( fake

0
Reply to comment
Commented on 2017-05-26 05:57:08

@digiplaza I don't think 1360 people thought that...

0
Reply to comment
Commented on 2017-07-11 20:17:59

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)

0
Reply to comment
Commented on 2017-07-11 21:09:14

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

0
Reply to comment
Commented on 2017-07-11 21:11:00

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

0
Reply to comment
Commented on 2017-07-11 21:12:30

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)"

0
Reply to comment
Commented on 2017-07-11 21:13:55

For resources error, i copied FS15 audio file in FS17 folder

0
Reply to comment
Write a comment