Kuhn Metris 4102 + Crop Destruction

Frenzied_Cow
Posts: 6
Joined: Tue Feb 28, 2017 10:40 pm

Kuhn Metris 4102 + Crop Destruction

Post by Frenzied_Cow »

Had a quick browse through the forum couldn't find this listed anywhere so I thought I'd mention that the new Kuhn pulled sprayer destroys the crops even though it has narrow tires. Pulling it behind a Steyr Multi with narrow tires and the crop destruction doesn't occur until after the sprayer, and the big New Holland Sprayer also works like it's supposed to on my save, just to rule out any mod/map conflicts.
Angryfarmer
Posts: 201
Joined: Tue Feb 14, 2017 11:23 pm

Re: Kuhn Metris 4102 + Crop Destruction

Post by Angryfarmer »

It's been poster in the Kuhn bug thread. I believe the new update to the crop destruction mod was suppose to fix it. Otherwise there will be a Kuhn dlc patch in the near future
Frenzied_Cow
Posts: 6
Joined: Tue Feb 28, 2017 10:40 pm

Re: Kuhn Metris 4102 + Crop Destruction

Post by Frenzied_Cow »

Ah. I didn't realize crop destruction had been updated, but I just tested it and it did not fix the issue.
jfjohnny5
Posts: 7
Joined: Sun Mar 29, 2015 2:41 pm

Re: Kuhn Metris 4102 + Crop Destruction

Post by jfjohnny5 »

Yeah, I've got the Crop Destruction mod updated and the Metris is still destroying crops. No fix for this?
canadafarms
Posts: 1291
Joined: Wed Nov 02, 2016 2:51 pm

Re: Kuhn Metris 4102 + Crop Destruction

Post by canadafarms »

There is an update in the works for the Kuhn dlc. The latest patch didn't have any fixes for the Kuhn stuff.
PS4
BlueShadow125
Posts: 78
Joined: Wed Oct 05, 2016 10:19 am

Re: Kuhn Metris 4102 + Crop Destruction

Post by BlueShadow125 »

little bit surprised at how long its taking :/
timothy31979
Posts: 4
Joined: Sun Mar 26, 2017 9:46 am

Re: Kuhn Metris 4102 + Crop Destruction

Post by timothy31979 »

I tried editing the mod to look for "$pdlcdir$kuhnPack/vehicles/trailers/kuhn/kuhnMetris4102.xml", but that did not work.
User avatar
Guil
Posts: 7420
Joined: Fri Aug 21, 2015 8:43 pm
Location: Ireland

Re: Kuhn Metris 4102 + Crop Destruction

Post by Guil »

DLC is encrypted and can't be edited.
timothy31979
Posts: 4
Joined: Sun Mar 26, 2017 9:46 am

Re: Kuhn Metris 4102 + Crop Destruction

Post by timothy31979 »

Not trying to edit the DLC, trying to edit the Crop Destruction Mod.

The Crop Destruction mod has "hardcoded special cases, because the don't have a 'narrow wheel configuration set'".

if self.configFileName == "data/vehicles/steerable/newHolland/SP400F.xml" or
self.configFileName == "data/vehicles/trailers/caruelleNicolas/caruelleNicolasStilla460.xml" or
self.configFileName == "data/vehicles/trailers/bredal/K165.xml"

Seems like you just need to find the value for self.configFileName, when using the Metris 4102. Maybe since it is encrypted, the value is null or something?
timothy31979
Posts: 4
Joined: Sun Mar 26, 2017 9:46 am

Re: Kuhn Metris 4102 + Crop Destruction

Post by timothy31979 »

Finally... Success... But, I don't like that I had to hard code the full path.

if self.configFileName == "data/vehicles/steerable/newHolland/SP400F.xml" or
self.configFileName == "data/vehicles/trailers/caruelleNicolas/caruelleNicolasStilla460.xml" or
self.configFileName == "data/vehicles/trailers/bredal/K165.xml" or
self.configFileName == "C:/Program Files (x86)/Steam/steamapps/common/Farming Simulator 17/pdlc/kuhnPack/vehicles/trailers/kuhn/kuhnMetris4102.xml" then
foundCareWheels = true;
end
timothy31979
Posts: 4
Joined: Sun Mar 26, 2017 9:46 am

Re: Kuhn Metris 4102 + Crop Destruction

Post by timothy31979 »

I like this one much better.

if self.configFileName == "data/vehicles/steerable/newHolland/SP400F.xml" or
self.configFileName == "data/vehicles/trailers/caruelleNicolas/caruelleNicolasStilla460.xml" or
self.configFileName == "data/vehicles/trailers/bredal/K165.xml" or
string.match(self.configFileName, "kuhnPack/vehicles/trailers/kuhn/kuhnMetris4102.xml") then
foundCareWheels = true;
end
Post Reply