Jump to content

MOD ERROR: unknown mod: Game mode 'endless' not found in GAME_MODES


mixli1230
  • Closed

MOD ERROR: unknown mod: Game mode 'endless' not found in GAME_MODES

what kind of mod throws a mistake I don't understand?
nothing else is written in the console, and the server is running.

server_log.txt


Steps to Reproduce

MOD ERROR: unknown mod: Game mode 'endless' not found in GAME_MODES

what kind of mod throws a mistake I don't understand?
nothing else is written in the console, and the server is running.




User Feedback


Quote
  • The Playstyle is calculated based on the world overrides in the Master server
  • To configure a server with a non-Survival playstyle, add a worldgenoverride.lua in your cluster’s Master folder with the following in it: 
return {
	override_enabled = true, 
--preset = "RELAXED", -- Relaxed (No Sweat)
	--preset = "ENDLESS", -- Endless
	--preset = "WILDERNESS", -- Wilderness
	--preset = "COMPLETE_DARKNESS", -- Lights Out
}

This change happened in today's update.

Changed Status to Closed

  • Like 2

Share this comment


Link to comment
Share on other sites

it didn't help

16 minutes ago, JesseB_Klei said:

This change happened in today's update.

Changed Status to Closed

it didn't help

22 minutes ago, JesseB_Klei said:

This change happened in today's update.

Changed Status to Closed

Did as you said, the config changed to this : :
KLEIN     1 return {
    override_enabled = true,
    overrides = {
        basicresource_regrowth = "always",
        ghost sanity drain = "none",
        portal resurrection = "always",
        reset time = "none",
    },
}

Share this comment


Link to comment
Share on other sites

I finally figured it out:

in cluster.ini change from

[GAMEPLAY]
game_mode = endless

to:

[GAMEPLAY]
game_mode = survival

 

now in your worldgenoverride.lua (in master only) it should look like this:

 

KLEI     1 return {
    override_enabled = true,
    worldgen_preset = "ENDLESS",
    settings_preset = "ENDLESS",
    overrides = {
    },
}

Edited by MrGuy333

Share this comment


Link to comment
Share on other sites

8 hours ago, MrGuy333 said:

I finally figured it out:

in cluster.ini change from

[GAMEPLAY]
game_mode = endless

to:

[GAMEPLAY]
game_mode = survival

 

now in your worldgenoverride.lua (in master only) it should look like this:

 

KLEI     1 return {
    override_enabled = true,
    worldgen_preset = "ENDLESS",
    settings_preset = "ENDLESS",
    overrides = {
    },
}

Thank you for your answer. I solved the problem.

Share this comment


Link to comment
Share on other sites

The next hotfix will have some improvements to apply the settings correctly when the game_mode is set to "endless" or "wilderness" in the cluster.ini

See this post for some more details on setting up the server:

 

  • Like 1
  • Thanks 1

Share this comment


Link to comment
Share on other sites



Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...