Jump to content

Fmod error: an invalid object handle was used.


Recommended Posts

Started running a dedicated server and tried to install http://steamcommunity.com/sharedfiles/filedetails/?id=375618000 this mod, but i keep getting this error.

 

The game loads up fine but the mod doesn't seem to be working i don't know if it is the mod that doesn't work or if its the setting i am doing wrong.

return {    ["workshop-375618000"] = { enabled = true,	configuration_options =		{			["Feather Drop Time"] = "Many",			["Amount Of Named Seeds"] = "Many",		},	}

this is what i have in my "modoverrides.lua".

Link to comment
Share on other sites

On 12/2/2015 at 11:25 AM, inamatus said:

Started running a dedicated server and tried to install http://steamcommunity.com/sharedfiles/filedetails/?id=375618000 this mod, but i keep getting this error.

 

The game loads up fine but the mod doesn't seem to be working i don't know if it is the mod that doesn't work or if its the setting i am doing wrong.


return {    ["workshop-375618000"] = { enabled = true,	configuration_options =		{			["Feather Drop Time"] = "Many",			["Amount Of Named Seeds"] = "Many",		},	}

this is what i have in my "modoverrides.lua".

Did you ever find a solution for this?

Link to comment
Share on other sites

The values in modoverrides.lua should be ones of data values of a particular option. Thus OP's modoverrides.lua would be

return {
    ["workshop-375618000"] = {
        enabled = true,
        configuration_options =
        {
            ["Feather Drop Time"] = "often",
            ["Amount Of Named Seeds"] = "often",
        },
    }
}

But I have this error message as well and I don't use this mod.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...