We all remember this mod on FS 19, which restored some interest in horse breeding. Horsehelper, once installed and activated, is a fictional worker who goes out and tends to your horses for a fee. On the previous opus, despite the considerable pay requested by the rider, the horses were sold for a maximum of €50.000 and, in the end, the operation was profitable. Change of scenery, on Farming Simulator 22, horses do not sell for more than €5.000, and the worker asks you for 300 euros per month (and therefore per day since by default one month = one day) and per horse… let it be counted. The Horsehelper extension has lost some of its charm. To be used if you use the horses only for pleasure and not for resale because the profitability drops very quickly with the use of this mod proposed by KR-Softwares.
So yes there remains the solution of editing the .lua file which is in the zip, and modifying some values. For example, find the lines:
for i, animal in pairs(s:getClusterSystem().clusters) do
price = price + ((100 – animal.riding) * FSSE_HorseHelper.price) + ((100 – animal.fitness) * FSSE_HorseHelper.price)
+ (animal.dirt * FSSE_HorseHelper.price)
animal.riding = 100
animal.fitness = 100
animal.dirt = 0
end
and replace them with these:
for i, animal in pairs(s:getClusterSystem().clusters) do
price = price + ((10 – animal.riding) * FSSE_HorseHelper.price) + ((10 – animal.fitness) * FSSE_HorseHelper.price)
+ (animal.dirt * FSSE_HorseHelper.price)
animal.riding = 100
animal.fitness = 100
animal.dirt = 0
end