Member since 2 / 2015
Userprofile of farmguy1988
First name:
no entry
Age & Gender:
no entry
City:
no entry
Hobbies:
no entry
Homepage
no entry
About farmguy1988
no entry
No images available yet
No videos available yet
This user hasn't created any projects yet.
Mod: Ropa Euro Tiger Set
i have the fix for it message me if you want it
Mod: Ropa Euro Tiger Set
The fix for the Ropa is this: Open RopaEuroTiger_XL.lua in notepad++ and find lines 332 - 342 and replace with the following:
Code: [Select]
function RopaEuroTiger_XL:getSaveAttributesAndNodes(nodeIdent)
local attributes = 'steeringMode="'..tostring(self.steeringMode)..'"';
local nodes = nil;
return attributes, nodes;
end;
function RopaEuroTiger_XL:loadFromAttributesAndNodes(xmlFile, key, resetVehicles)
if not resetVehicles then
local steeringMode = Utils.getNoNil(getXMLInt(xmlFile, key .. "#steeringMode"), self.steeringMode);
self.steeringMode = steeringMode;
end
return BaseMission.VEHICLE_LOAD_OK;
end;
I've had to Ropa in game since I fixed this and no further problems. If it is another mod, then look for the sections I listed, the problem can probably be located there.