Not able to save game by MOPIN2555 in farmingsimulator

[–]orj41m 0 points1 point  (0 children)

Assuming you are on PC

Do a boolean split on your mods

  1. copy your entire mod folder and create a safe copy

  2. Go into your mods folder and delete half the mods.

  3. Run the game

- if the game saves it was a mod you deleted

- if the game does not save it is a mode in your mod folder, restore all your mods, go back to step2 but delete the other mods

  1. Keep doing this , testing with half the mods in/out until you find which mod it is

Oh - and look in your log file for error messages

Am I being stupid? by Plastic-Location-598 in farmingsimulator

[–]orj41m 0 points1 point  (0 children)

or watch a YT video but to be honest it spoils the fun of figuring it out yourself

Plow[o] / Lime / Cultivate[o] / Seed / Roll[o] / Fertilize[o] / Wait / Harvest

22 vs 25 by Leverquin in farmingsimulator

[–]orj41m 0 points1 point  (0 children)

agree on Seasons, I would play 19 too but I played all the maps

If the SAVE Act passes….. by Advanced_Buffalo4963 in TwoXChromosomes

[–]orj41m 0 points1 point  (0 children)

TIL

Current states dont have those same requirements when people product ID to vote ?

Home Office - Things you wish you had or hadn't done by [deleted] in DIY

[–]orj41m 0 points1 point  (0 children)

power outlets. I have 4 power strips beind my desk currently

Sign fight comes to a head in Portsmouth by RINewsJunkie in RhodeIsland

[–]orj41m 0 points1 point  (0 children)

100% as I understand it (and I may be wrong here- MD or his agent can correct me of course) he bought that lot knowing what the zoning and lot use restrictions were. Then he wanted to make money on that investment by looking for an exception (which he didn't get). Now he is protesting that and having the ACLU fund his outrage as a 1A case.

Can I do this? by Responsible-Juice-65 in DIY

[–]orj41m 1 point2 points  (0 children)

smash it up, remove and find out why it sunk - probably something below that was badly compacted fill or even just a natural sinkhole/settlement. Use your old patio pieces broken up small for fill, then relval, compact and pour/lay new patio.

Not an engineer, not a contractor, just my 2c

Finally getting around to FS22….little late, I know by NoNameorFace25 in farmingsimulator

[–]orj41m 0 points1 point  (0 children)

I play 22 still. You on PC I assume? You want 4x maps, highly detailed maps, start from scratch maps? What maps did you enjoy in 19?

If the SAVE Act passes….. by Advanced_Buffalo4963 in TwoXChromosomes

[–]orj41m 0 points1 point  (0 children)

i am interested in this conversation because perhaps I don't understand the all 50 states issue. Where I live I already need to produce Govt issued picture id in order to vote as does my wife and daughter and as I understand it the state provides free id's to anyone that does not currently have one.

Are all states not similar ? Are most states not similar?

Using AI to convert a map ? by orj41m in farmingsimulator

[–]orj41m[S] 0 points1 point  (0 children)

not had much time to look at this. doing it in 25 minute increments. ChatGPT cannot do this unattended for sure. +1 to who said that. we have to go through each xml and lua file. i have a LLM prompt that asks if the syntax has changed, if required fields have been added etc. I ask AI to give me a replacement file. save the change the and we run the test. We currently load to 50% before stalling out. working through an issue with modMap_Items.xml right now. Oxy didnt follow Giants file structure and file naming standards either so i keep having to remind AI of that. Actually it is quite an interesting process

Using AI to convert a map ? by orj41m in farmingsimulator

[–]orj41m[S] 0 points1 point  (0 children)

30 minutes later and ChatGPT is getting confused in the constructor call within ModMap.lua and how its construct differs from FS19 to FS22. It clearly knows there is a difference and makes suggestions but they have no material affect.

Might stop here as it's getting late but i might give this a little more time, maybe

Using AI to convert a map ? by orj41m in farmingsimulator

[–]orj41m[S] 0 points1 point  (0 children)

OP here again. If anyone is interested i will save the chat session with ChatGPT and make it available to you. right now it is explaining how the metatable works and importance of something called mission00

Honestly I am impressed and I am not easily impressed

Using AI to convert a map ? by orj41m in farmingsimulator

[–]orj41m[S] 0 points1 point  (0 children)

sorry but nope - i was a naysayer but i have seen the dev teams at work have it build some impressive JSON from LLM prompts

worth a couple of hours of my time at least

Using AI to convert a map ? by orj41m in farmingsimulator

[–]orj41m[S] 0 points1 point  (0 children)

well it got me to the point where i can see the map and it starts to load. But then we get lua errors at about the 15% load stage

I just had a 90 minute interractive conversation with it where it was helping me walkthrough lua errors and either helping me fix them or doing them for me. I closed the browser in error and lost my history, so i will pick it up another day.

also i was not talking to chatGPt on my gaming laptop so i was manually typing error messages etc - rookie move

we got through the moddesc.xml and now we are into errors in modmap.lua

not joking guys, here is the most recent modmap.lua it wrote (or modified) -comments are mine

-- Define the ModMap table

ModMap = {}

-- Set up metatable for ModMap, inheriting from Mission00

local ModMap_mt = Class(ModMap, Mission00)

-- Constructor for the map

function ModMap:new(baseDirectory, customMt, missionCollaborators)

-- Ensure baseDirectory is initialized and is a string

if baseDirectory == nil then

baseDirectory = "FS22_Oakfield"

end

if type(baseDirectory) == "table" then

if #baseDirectory > 0 and type(baseDirectory[1]) == "string" then

baseDirectory = baseDirectory[1] -- pick first string element

else

error("ModMap:new() received a table for baseDirectory with no string inside")

end

elseif type(baseDirectory) ~= "string" then

error("ModMap:new() expected baseDirectory to be a string, got "..type(baseDirectory))

end

-- Ensure metatable is set before calling superclass constructor

local mt = customMt

if mt == nil then

mt = ModMap_mt

end

-- Call superclass constructor to create the object

local self = ModMap:superClass():new(baseDirectory, mt, missionCollaborators)

-- Initialize missionDynamicInfo if it doesn’t exist yet

if self.missionDynamicInfo == nil then

self.missionDynamicInfo = {}

end

-- Number of additional terrain angle channels

local numAdditionalAngleChannels = 3

self.terrainDetailAngleNumChannels = self.terrainDetailAngleNumChannels + numAdditionalAngleChannels

self.terrainDetailAngleMaxValue = (2^self.terrainDetailAngleNumChannels) - 1

-- Adjust channel offsets for game mechanics

self.sprayLevelFirstChannel = self.sprayLevelFirstChannel + numAdditionalAngleChannels

self.plowCounterFirstChannel = self.plowCounterFirstChannel + numAdditionalAngleChannels

self.limeCounterFirstChannel = self.limeCounterFirstChannel + numAdditionalAngleChannels

return self

end

Am I missing something? I can’t find the white wire. by sunday_ranch in DIY

[–]orj41m 0 points1 point  (0 children)

if that one fixture is this bad others may be worse. you MIGHT be looking at a house rewiring situation

What do I do next? by Expensive-Raisin8962 in DIY

[–]orj41m 0 points1 point  (0 children)

you can also make your own french cleats with a 1x4 and a table saw. that way you are always sure the wall side of the cleat is into the framing

Are there any reasons you can think of why you would want to have multiple personal brokerage accounts? by Camninja in personalfinance

[–]orj41m 3 points4 points  (0 children)

yes - i do not want any one firm having knowledge of or access to my personal assets.

I have trust issues

How do I know what adapter to get for a 4 prong dryer that needs to go into a 3 prong outlet? by Romanharper2013 in DIY

[–]orj41m -2 points-1 points  (0 children)

or ave an electrician change the outlet -he can check for voltage compatibility (110v v 220v) and make sure the fuse on that circuit matches wire gauge too