Skelly Bones Posted January 11, 2018 Share Posted January 11, 2018 Is there a mod to disable disease and petrification? Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/ Share on other sites More sharing options...
Daniel86268 Posted January 11, 2018 Share Posted January 11, 2018 There's no need for a mod like that. You can just disable it on world generation in the options (Either the game UI, or the Server worldgenoverride.lua), or you can disable it on an existing world using: TheWorld.topology.overrides.disease_delay = "none" TheWorld.topology.overrides.petrification = "none" c_save() c_reload() On each world (Both overworld and caves, if you have both) from the ingame console on a Admin player, or on the server console if you are running a dedicated server. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-991872 Share on other sites More sharing options...
jesuisralph Posted January 16, 2018 Share Posted January 16, 2018 On 1/11/2018 at 11:10 AM, Daniel86268 said: There's no need for a mod like that. You can just disable it on world generation in the options (Either the game UI, or the Server worldgenoverride.lua), or you can disable it on an existing world using: TheWorld.topology.overrides.disease_delay = "none" TheWorld.topology.overrides.petrification = "none" c_save() c_reload() On each world (Both overworld and caves, if you have both) from the ingame console on a Admin player, or on the server console if you are running a dedicated server. I wish this option was available on PS4, the only way to "disable" or "enable" is to start over a new world Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-993226 Share on other sites More sharing options...
disies Posted March 15, 2018 Share Posted March 15, 2018 On 11.1.2018 at 8:10 PM, Daniel86268 said: There's no need for a mod like that. You can just disable it on world generation in the options (Either the game UI, or the Server worldgenoverride.lua), or you can disable it on an existing world using: TheWorld.topology.overrides.disease_delay = "none" TheWorld.topology.overrides.petrification = "none" c_save() c_reload() On each world (Both overworld and caves, if you have both) from the ingame console on a Admin player, or on the server console if you are running a dedicated server. I tried that but nothing happened. I read on reddit that it's normal that it's still on "default" and also after "c_reload()" that it's supposed to reload the server but also nothing happened. Is something suppose to happen and how can I make sure that it worked? Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015403 Share on other sites More sharing options...
Daniel86268 Posted March 15, 2018 Share Posted March 15, 2018 1 hour ago, disies said: I tried that but nothing happened. I read on reddit that it's normal that it's still on "default" and also after "c_reload()" that it's supposed to reload the server but also nothing happened. Is something suppose to happen and how can I make sure that it worked? Make sure you have the infamous Remote: In front of your command line, or type it into the server console. Otherwise you are executing it client side, which doesn't do anything. It happens VERY often that people "ctrl+v" it into their ingame command line where "crtl" toggles the "Remote: " thingy. Press "crtl" again to enable it again. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015446 Share on other sites More sharing options...
fimmatek Posted March 15, 2018 Share Posted March 15, 2018 1 minute ago, Daniel86268 said: Make sure you have the infamous Remote: In front of your command line, or type it into the server console. Otherwise you are executing it client side, which doesn't do anything. It happens VERY often that people "ctrl+v" it into their ingame command line where "crtl" toggles the "Remote: " thingy. Press "crtl" again to enable it again. Wasn't it patched and now ctrl+v doesn't toggle the remote? Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015447 Share on other sites More sharing options...
disies Posted March 15, 2018 Share Posted March 15, 2018 45 minutes ago, Daniel86268 said: Make sure you have the infamous Remote: In front of your command line, or type it into the server console. Otherwise you are executing it client side, which doesn't do anything. It happens VERY often that people "ctrl+v" it into their ingame command line where "crtl" toggles the "Remote: " thingy. Press "crtl" again to enable it again. Did that and it's still on default and again nothing happened at c_reload() Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015468 Share on other sites More sharing options...
Daniel86268 Posted March 15, 2018 Share Posted March 15, 2018 How did you check if it's still on default? If you checked the worldgenoverrides.lua that won't ever change through using those commands, since it only get's applied on world generation (hence the name). The command only modifies the world itself. Iirc diseased plants and petrified trees won't disappear either. They just stay. This setting only disables new disease or petrification from happening. Edit: Not sure why c_reload() didn't do anything for you. Always worked for me so far. Is there anything showing in the console if you open it again? Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015469 Share on other sites More sharing options...
disies Posted March 15, 2018 Share Posted March 15, 2018 20 minutes ago, Daniel86268 said: How did you check if it's still on default? If you checked the worldgenoverrides.lua that won't ever change through using those commands, since it only get's applied on world generation (hence the name). The command only modifies the world itself. Iirc diseased plants and petrified trees won't disappear either. They just stay. This setting only disables new disease or petrification from happening. Edit: Not sure why c_reload() didn't do anything for you. Always worked for me so far. Is there anything showing in the console if you open it again? No there is nothing new. But after using TheWorld.topology.overrides.disease_delay = "none" it says "attempt to call a nil value" Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015477 Share on other sites More sharing options...
TemporaryMan Posted March 15, 2018 Share Posted March 15, 2018 1 hour ago, disies said: No there is nothing new. But after using TheWorld.topology.overrides.disease_delay = "none" it says "attempt to call a nil value" Because it was left to default, so the game didn't even initialize a variable for it. You'll need to hunt down the server's files and manually add the variable, set to none. I had to do this with deerclops once, but it's been a while. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015511 Share on other sites More sharing options...
disies Posted March 15, 2018 Share Posted March 15, 2018 3 minutes ago, TemporaryMan said: Because it was left to default, so the game didn't even initialize a variable for it. You'll need to hunt down the server's files and manually add the variable, set to none. I had to do this with deerclops once, but it's been a while. Done. Is there a way to test that it worked or just wait and see? Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015512 Share on other sites More sharing options...
TemporaryMan Posted March 15, 2018 Share Posted March 15, 2018 Other than using longupdate() to skip ahead a year, see if anything's become diseased, and then roll back? Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015516 Share on other sites More sharing options...
disies Posted March 15, 2018 Share Posted March 15, 2018 36 minutes ago, TemporaryMan said: Other than using longupdate() to skip ahead a year, see if anything's become diseased, and then roll back? Ah, thanks a lot. I think it work. (: Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015524 Share on other sites More sharing options...
disies Posted March 15, 2018 Share Posted March 15, 2018 Okay, after playing a while I noticed the disease still occured and then checked the files again in which I've changed the value to "none". It went back to default and to be sure I saved it again as none and it's again back to default. What else do I need to do? Maybe I am missing something? Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015657 Share on other sites More sharing options...
Daniel86268 Posted March 16, 2018 Share Posted March 16, 2018 7 hours ago, disies said: Okay, after playing a while I noticed the disease still occured and then checked the files again in which I've changed the value to "none". It went back to default and to be sure I saved it again as none and it's again back to default. What else do I need to do? Maybe I am missing something? I'm not sure if changing those values in some files is actually gonna work, because usually things like these are usually quite deep in the files. That's why there are the console commands to change these values. Do you wanna post a few screenshots and/or logs of what happened? Maybe we can figure out what's wrong then. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015784 Share on other sites More sharing options...
disies Posted March 16, 2018 Share Posted March 16, 2018 1 hour ago, Daniel86268 said: I'm not sure if changing those values in some files is actually gonna work, because usually things like these are usually quite deep in the files. That's why there are the console commands to change these values. Do you wanna post a few screenshots and/or logs of what happened? Maybe we can figure out what's wrong then. Alright, I suppose I need the server_log ? Spoiler [00:00:00]: System Memory: Memory Load: 37% Available Physical Memory: 10251m/16324m Available Page File: 25032m/32646m Available Virtual Memory: 3993m/4095m Available Extended Virtual Memory: 0m [00:00:00]: Process Memory: Peak Working Set Size: 26m Working Set Size: 26m Quota Peak Page Pool Usage: 190k Quota Page Pool Usage: 184k Quota Peak Non Paged Pool Usage:15k Quota Non Paged Pool Usage: 14k Page File Usage: 5m Peak Page File Usage: 5m [00:00:00]: PersistRootStorage is now APP:Klei//DoNotStarveTogether/Cluster_3/Master/ [00:00:00]: Starting Up [00:00:00]: Version: 259992 [00:00:00]: Current time: Fri Mar 16 04:03:27 2018 [00:00:00]: Don't Starve Together: 259992 WIN32 [00:00:00]: Build Date: 2946 [00:00:00]: Parsing command line [00:00:00]: Command Line Arguments: -monitor_parent_process 3464 -persistent_storage_root APP:Klei/ -conf_dir DoNotStarveTogether -cluster Cluster_3 -fo -ownernetid 76561198070613654 -backup_log_count 10 -shard Master -sigprefix DST_Master [00:00:00]: Initializing distribution platform [00:00:00]: Initializing Minidump handler [00:00:00]: ....Done [00:00:00]: ....Done [00:00:00]: Fixing DPI [00:00:00]: ...Done [00:00:00]: Mounting file system databundles/shaders.zip successful. [00:00:00]: Mounting file system databundles/fonts.zip successful. [00:00:00]: THREAD - started 'GAClient' (4708) [00:00:00]: CurlRequestManager::ClientThread::Main() [00:00:00]: Mounting file system databundles/anim_dynamic.zip successful. [00:00:00]: Mounting file system databundles/bigportraits.zip successful. [00:00:00]: Mounting file system databundles/images.zip successful. [00:00:00]: Mounting file system databundles/scripts.zip successful. [00:00:00]: ProfileIndex:4.60 [00:00:00]: [Connect] PendingConnection::Reset(true) [00:00:00]: Network tick rate: U=15(2), D=0 [00:00:00]: Network tick rate: U=15(2), D=0 [00:00:00]: Authorized application C:\Program Files (x86)\Steam\steamapps\common\Don't Starve Together\bin\dontstarve_dedicated_server_nullrenderer.exe is enabled in the firewall. [00:00:00]: WindowsFirewall - Application already authorized [00:00:00]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/blocklist.txt (Failure) [00:00:00]: THREAD - started 'StreamInput' (6444) [00:00:00]: OnLoadPermissionList: APP:Klei//DoNotStarveTogether/client_save/adminlist.txt (Failure) [00:00:00]: OnLoadUserIdList: APP:Klei//DoNotStarveTogether/client_save/whitelist.txt (Failure) [00:00:00]: Offline user ID: OU_76561198070613654 [00:00:00]: Token retrieved from: APP:Klei//DoNotStarveTogether/Cluster_3/cluster_token.txt [00:00:00]: Token retrieved from: APP:Klei//DoNotStarveTogether/Cluster_3/cluster_token.txt [00:00:00]: HardwareStats: OS name Microsoft Windows 7 Home Premium version 6.1.7601 architecture 64-Bit platformSpecific SP 1.0 CPU numCores 4 features SSE,SSE2,SSE3,SSSE3,SSE41,SSE42,AVX name Intel(R) Core(TM) i5-4440 CPU @ 3.10GHz manufacturer GenuineIntel clockSpeed 3101 RAM megsOfRam 16384 GPU name NVIDIA GeForce GTX 750 Ti driverDate 20171027000000.000000-000 megsOfRam 2048 refreshRate 60 videoModeDescription 1920 x 1080 x 4294967296 Farben driverVersion 23.21.13.8813 [00:00:00]: cGame::InitializeOnMainThread [00:00:00]: Renderer initialize: Okay [00:00:00]: AnimManager initialize: Okay [00:00:00]: Buffers initialize: Okay [00:00:00]: cDontStarveGame::DoGameSpecificInitialize() [00:00:00]: GameSpecific initialize: Okay [00:00:00]: cGame::StartPlaying [00:00:00]: LOADING LUA [00:00:00]: DoLuaFile scripts/main.lua [00:00:00]: DoLuaFile loading buffer scripts/main.lua [00:00:01]: taskgrouplist: default Together [00:00:01]: taskgrouplist: classic Classic [00:00:01]: taskgrouplist: cave_default Underground [00:00:01]: taskgrouplist: lavaarena_taskset The Forge [00:00:01]: running main.lua [00:00:01]: loaded modindex [00:00:01]: ModIndex: Beginning normal load sequence for dedicated server. [00:00:01]: DownloadMods(0) [00:00:01]: modoverrides.lua enabling workshop-1311366056 [00:00:01]: modoverrides.lua enabling workshop-378160973 [00:00:01]: modoverrides.lua enabling workshop-514078314 [00:00:01]: modoverrides.lua enabling workshop-666155465 [00:00:01]: ModIndex:GetModsToLoad inserting moddir, workshop-1311366056 [00:00:01]: ModIndex:GetModsToLoad inserting moddir, workshop-378160973 [00:00:01]: ModIndex:GetModsToLoad inserting moddir, workshop-514078314 [00:00:01]: ModIndex:GetModsToLoad inserting moddir, workshop-666155465 [00:00:01]: Could not load mod_config_data/modconfiguration_workshop-1311366056_CLIENT [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-1311366056 [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-378160973 [00:00:01]: Overriding mod workshop-378160973's option FIREOPTIONS with value 2 [00:00:01]: Overriding mod workshop-378160973's option SHOWFIREICONS with value true [00:00:01]: Overriding mod workshop-378160973's option SHAREMINIMAPPROGRESS with value true [00:00:01]: Overriding mod workshop-378160973's option SHOWPLAYERICONS with value true [00:00:01]: Overriding mod workshop-378160973's option OVERRIDEMODE with value false [00:00:01]: Overriding mod workshop-378160973's option SHOWPLAYERSOPTIONS with value 2 [00:00:01]: Overriding mod workshop-378160973's option ENABLEPINGS with value true [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-514078314 [00:00:01]: Overriding mod workshop-514078314's option EnableIndividualization with value false [00:00:01]: Overriding mod workshop-514078314's option EnableNonPlayerSpeed with value false [00:00:01]: Overriding mod workshop-514078314's option InsulationDuration with value 480 [00:00:01]: Overriding mod workshop-514078314's option SpeedyTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option SpeedyTurfSpeeds with value 1.25 [00:00:01]: Overriding mod workshop-514078314's option RainProtectingTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option SanityTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option InsulatingTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option EnableFlooringPlanting with value false [00:00:01]: Overriding mod workshop-514078314's option EnableGameTurfRecipes with value 1 [00:00:01]: Overriding mod workshop-514078314's option EnableTurfedTurfRecipes with value 1 [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-666155465 [00:00:01]: Overriding mod workshop-666155465's option lang with value auto [00:00:01]: Overriding mod workshop-666155465's option food_order with value 0 [00:00:01]: Overriding mod workshop-666155465's option show_food_units with value 1 [00:00:01]: Overriding mod workshop-666155465's option food_estimation with value 1 [00:00:01]: Overriding mod workshop-666155465's option food_style with value 1 [00:00:01]: Loading mod: workshop-1311366056 (Potted Plants (DST)) Version:1.0 [00:00:01]: Could not load mod_config_data/modconfiguration_workshop-378160973_CLIENT [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-1311366056 [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-378160973 [00:00:01]: Overriding mod workshop-378160973's option FIREOPTIONS with value 2 [00:00:01]: Overriding mod workshop-378160973's option SHOWFIREICONS with value true [00:00:01]: Overriding mod workshop-378160973's option SHAREMINIMAPPROGRESS with value true [00:00:01]: Overriding mod workshop-378160973's option SHOWPLAYERICONS with value true [00:00:01]: Overriding mod workshop-378160973's option OVERRIDEMODE with value false [00:00:01]: Overriding mod workshop-378160973's option SHOWPLAYERSOPTIONS with value 2 [00:00:01]: Overriding mod workshop-378160973's option ENABLEPINGS with value true [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-514078314 [00:00:01]: Overriding mod workshop-514078314's option EnableIndividualization with value false [00:00:01]: Overriding mod workshop-514078314's option EnableNonPlayerSpeed with value false [00:00:01]: Overriding mod workshop-514078314's option InsulationDuration with value 480 [00:00:01]: Overriding mod workshop-514078314's option SpeedyTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option SpeedyTurfSpeeds with value 1.25 [00:00:01]: Overriding mod workshop-514078314's option RainProtectingTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option SanityTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option InsulatingTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option EnableFlooringPlanting with value false [00:00:01]: Overriding mod workshop-514078314's option EnableGameTurfRecipes with value 1 [00:00:01]: Overriding mod workshop-514078314's option EnableTurfedTurfRecipes with value 1 [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-666155465 [00:00:01]: Overriding mod workshop-666155465's option lang with value auto [00:00:01]: Overriding mod workshop-666155465's option food_order with value 0 [00:00:01]: Overriding mod workshop-666155465's option show_food_units with value 1 [00:00:01]: Overriding mod workshop-666155465's option food_estimation with value 1 [00:00:01]: Overriding mod workshop-666155465's option food_style with value 1 [00:00:01]: Loading mod: workshop-378160973 (Global Positions) Version:1.7.3 [00:00:01]: Could not load mod_config_data/modconfiguration_workshop-514078314_CLIENT [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-1311366056 [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-378160973 [00:00:01]: Overriding mod workshop-378160973's option FIREOPTIONS with value 2 [00:00:01]: Overriding mod workshop-378160973's option SHOWFIREICONS with value true [00:00:01]: Overriding mod workshop-378160973's option SHAREMINIMAPPROGRESS with value true [00:00:01]: Overriding mod workshop-378160973's option SHOWPLAYERICONS with value true [00:00:01]: Overriding mod workshop-378160973's option OVERRIDEMODE with value false [00:00:01]: Overriding mod workshop-378160973's option SHOWPLAYERSOPTIONS with value 2 [00:00:01]: Overriding mod workshop-378160973's option ENABLEPINGS with value true [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-514078314 [00:00:01]: Overriding mod workshop-514078314's option EnableIndividualization with value false [00:00:01]: Overriding mod workshop-514078314's option EnableNonPlayerSpeed with value false [00:00:01]: Overriding mod workshop-514078314's option InsulationDuration with value 480 [00:00:01]: Overriding mod workshop-514078314's option SpeedyTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option SpeedyTurfSpeeds with value 1.25 [00:00:01]: Overriding mod workshop-514078314's option RainProtectingTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option SanityTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option InsulatingTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option EnableFlooringPlanting with value false [00:00:01]: Overriding mod workshop-514078314's option EnableGameTurfRecipes with value 1 [00:00:01]: Overriding mod workshop-514078314's option EnableTurfedTurfRecipes with value 1 [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-666155465 [00:00:01]: Overriding mod workshop-666155465's option lang with value auto [00:00:01]: Overriding mod workshop-666155465's option food_order with value 0 [00:00:01]: Overriding mod workshop-666155465's option show_food_units with value 1 [00:00:01]: Overriding mod workshop-666155465's option food_estimation with value 1 [00:00:01]: Overriding mod workshop-666155465's option food_style with value 1 [00:00:01]: Loading mod: workshop-514078314 (Turfed!) Version:1.4 [00:00:01]: Could not load mod_config_data/modconfiguration_workshop-666155465_CLIENT [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-1311366056 [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-378160973 [00:00:01]: Overriding mod workshop-378160973's option FIREOPTIONS with value 2 [00:00:01]: Overriding mod workshop-378160973's option SHOWFIREICONS with value true [00:00:01]: Overriding mod workshop-378160973's option SHAREMINIMAPPROGRESS with value true [00:00:01]: Overriding mod workshop-378160973's option SHOWPLAYERICONS with value true [00:00:01]: Overriding mod workshop-378160973's option OVERRIDEMODE with value false [00:00:01]: Overriding mod workshop-378160973's option SHOWPLAYERSOPTIONS with value 2 [00:00:01]: Overriding mod workshop-378160973's option ENABLEPINGS with value true [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-514078314 [00:00:01]: Overriding mod workshop-514078314's option EnableIndividualization with value false [00:00:01]: Overriding mod workshop-514078314's option EnableNonPlayerSpeed with value false [00:00:01]: Overriding mod workshop-514078314's option InsulationDuration with value 480 [00:00:01]: Overriding mod workshop-514078314's option SpeedyTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option SpeedyTurfSpeeds with value 1.25 [00:00:01]: Overriding mod workshop-514078314's option RainProtectingTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option SanityTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option InsulatingTurfs with value 0 [00:00:01]: Overriding mod workshop-514078314's option EnableFlooringPlanting with value false [00:00:01]: Overriding mod workshop-514078314's option EnableGameTurfRecipes with value 1 [00:00:01]: Overriding mod workshop-514078314's option EnableTurfedTurfRecipes with value 1 [00:00:01]: applying configuration_options from modoverrides.lua to mod workshop-666155465 [00:00:01]: Overriding mod workshop-666155465's option lang with value auto [00:00:01]: Overriding mod workshop-666155465's option food_order with value 0 [00:00:01]: Overriding mod workshop-666155465's option show_food_units with value 1 [00:00:01]: Overriding mod workshop-666155465's option food_estimation with value 1 [00:00:01]: Overriding mod workshop-666155465's option food_style with value 1 [00:00:01]: Loading mod: workshop-666155465 (Show Me) Version:0.37 [00:00:01]: Mod: workshop-666155465 (Show Me) Loading modworldgenmain.lua [00:00:01]: Mod: workshop-666155465 (Show Me) Mod had no modworldgenmain.lua. Skipping. [00:00:01]: Mod: workshop-666155465 (Show Me) Loading modmain.lua [00:00:01]: ShowMe version: 0.37 [00:00:01]: Mod: workshop-514078314 (Turfed!) Loading modworldgenmain.lua [00:00:01]: modimport: ../mods/workshop-514078314/tile_adder.lua [00:00:01]: [SetTileTypeProperty(10,turfed,table: 070F3200)] Property 'turfed' of tile type 10 (WOODFLOOR) set to 'table: 070F3200'. [00:00:01]: [SetTileTypeProperty(12,turfed,table: 070F3200)] Property 'turfed' of tile type 12 (CHECKER) set to 'table: 070F3200'. [00:00:01]: [SetTileTypeProperty(11,turfed,table: 070F3200)] Property 'turfed' of tile type 11 (CARPET) set to 'table: 070F3200'. [00:00:01]: [SetTileTypeProperty(32,turfed,table: 070F3200)] Property 'turfed' of tile type 32 (SCALE) set to 'table: 070F3200'. [00:00:01]: Mod: workshop-514078314 (Turfed!) Loading modmain.lua [00:00:01]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:01]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:01]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:01]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:01]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:01]: Mod: workshop-1311366056 (Potted Plants (DST)) Loading modworldgenmain.lua [00:00:01]: Mod: workshop-1311366056 (Potted Plants (DST)) Loading modmain.lua [00:00:01]: Mod: workshop-378160973 (Global Positions) Loading modworldgenmain.lua [00:00:01]: Mod: workshop-378160973 (Global Positions) Mod had no modworldgenmain.lua. Skipping. [00:00:01]: Mod: workshop-378160973 (Global Positions) Loading modmain.lua [00:00:01]: ModIndex:GetModsToLoad inserting moddir, workshop-1311366056 [00:00:01]: ModIndex:GetModsToLoad inserting moddir, workshop-378160973 [00:00:01]: ModIndex:GetModsToLoad inserting moddir, workshop-514078314 [00:00:01]: ModIndex:GetModsToLoad inserting moddir, workshop-666155465 [00:00:02]: LOADING LUA SUCCESS [00:00:02]: Registering mod namespace "workshop-378160973" [00:00:02]: Registering mod namespace "showmehint" [00:00:02]: Registering mod namespace "showme" [00:00:02]: PlayerDeaths could not load morgue [00:00:02]: PlayerHistory could not load player_history [00:00:02]: bloom_enabled false [00:00:02]: loaded saveindex [00:00:02]: OnFilesLoaded() [00:00:02]: OnUpdatePurchaseStateComplete [00:00:02]: Mod: workshop-666155465 (Show Me) Registering prefabs [00:00:02]: Mod: workshop-666155465 (Show Me) Registering default mod prefab [00:00:02]: Mod: workshop-514078314 (Turfed!) Registering prefabs [00:00:02]: Mod: workshop-514078314 (Turfed!) Registering prefab file: prefabs/turf_test [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_test [00:00:02]: Mod: workshop-514078314 (Turfed!) Registering prefab file: prefabs/turfed_turfs [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetblackfur [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetblue [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetcamo [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetfur [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetpink [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetpurple [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetred [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetred2 [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpettd [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_carpetwifi [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_natureastroturf [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_naturedesert [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_rockblacktop [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_rockgiraffe [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_rockmoon [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_rockyellowbrick [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_tilefrosty [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_tilecheckerboard [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_tilesquares [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_wooddark [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_woodcherry [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_woodpine [00:00:02]: Mod: workshop-514078314 (Turfed!) turf_spikes [00:00:02]: Mod: workshop-514078314 (Turfed!) Registering default mod prefab [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefabs [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedflower [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedflower [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedflower_placer [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedevilflower [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedevilflower [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedevilflower_placer [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedcactus [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedcactus [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedcactus_placer [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedrose [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedrose [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedrose_placer [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedgreenmushroom [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedgreenmushroom [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedgreenmushroom_placer [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedredmushroom [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedredmushroom [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedredmushroom_placer [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedbluemushroom [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedbluemushroom [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedbluemushroom_placer [00:00:03]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering default mod prefab [00:00:03]: Mod: workshop-378160973 (Global Positions) Registering prefabs [00:00:03]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/globalposition_classified [00:00:03]: Mod: workshop-378160973 (Global Positions) globalposition_classified [00:00:03]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/smoketrail [00:00:03]: Mod: workshop-378160973 (Global Positions) smoketrail [00:00:03]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/globalmapicon_noproxy [00:00:03]: Mod: workshop-378160973 (Global Positions) globalmapicon_noproxy [00:00:03]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/worldmapexplorer [00:00:03]: Mod: workshop-378160973 (Global Positions) worldmapexplorer [00:00:03]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/pings [00:00:03]: Mod: workshop-378160973 (Global Positions) ping_generic [00:00:03]: Mod: workshop-378160973 (Global Positions) ping_omw [00:00:03]: Mod: workshop-378160973 (Global Positions) ping_danger [00:00:03]: Mod: workshop-378160973 (Global Positions) ping_explore [00:00:03]: Mod: workshop-378160973 (Global Positions) ping_gohere [00:00:03]: Mod: workshop-378160973 (Global Positions) Registering default mod prefab [00:00:03]: Load FE [00:00:04]: Load FE: done [00:00:04]: ModIndex: Load sequence finished successfully. [00:00:04]: Reset() returning [00:00:04]: THREAD - started 'FilesExistAsyncThread' (8088) [00:00:04]: [IPC] Signal 'DST_Master_Kill' opened #00000314 [00:00:04]: [IPC] Registering handler for signal #00000314 [00:00:04]: [IPC] Handle #00000314 added to the Eventhandles [00:00:04]: FilesExistAsyncThread started (14087 files)... [00:00:04]: [IPC] Signal 'DST_Master_Starting' opened #00000318 [00:00:04]: [IPC] Sending signal... #00000318 [00:00:05]: [200] Account Communication Success (6) [00:00:05]: Received (KU_JwKTqzT9) from TokenPurpose [00:00:05]: Starting Dedicated Server Game [00:00:05]: Network tick rate: U=15(2), D=0 [00:00:05]: About to start a server with the following settings: [00:00:05]: Dedicated: true [00:00:05]: Online: true [00:00:05]: Passworded: false [00:00:05]: ServerPort: 10999 [00:00:05]: SteamAuthPort: 8766 [00:00:05]: SteamMasterServerPort: 27016 [00:00:05]: ClanID: false [00:00:05]: ClanOnly: false [00:00:05]: ClanAdmin: false [00:00:05]: LanOnly: false [00:00:05]: FriendsOnly: true [00:00:05]: EnableAutosaver: true [00:00:05]: EncodeUserPath: false [00:00:05]: PVP: false [00:00:05]: MaxPlayers: 6 [00:00:05]: GameMode: endless [00:00:05]: OverridenDNS: [00:00:05]: PauseWhenEmpty: true [00:00:05]: IdleTimeout: 1800s [00:00:05]: VoteEnabled: false [00:00:05]: InternetBroadcasting: true [00:00:05]: Intent: social [00:00:05]: [Warning] Could not confirm port 10999 is open in the firewall. [00:00:05]: Could not load mod_config_data/modconfiguration_workshop-514078314 [00:00:05]: Could not load mod_config_data/modconfiguration_workshop-378160973 [00:00:05]: Could not load mod_config_data/modconfiguration_workshop-1311366056 [00:00:05]: Could not load mod_config_data/modconfiguration_workshop-666155465 [00:00:05]: Online Server Started on port: 10999 [00:00:05]: unloading prefabs for mod MOD_workshop-666155465 [00:00:05]: unloading prefabs for mod MOD_workshop-514078314 [00:00:05]: unloading prefabs for mod MOD_workshop-1311366056 [00:00:05]: unloading prefabs for mod MOD_workshop-378160973 [00:00:05]: Collecting garbage... [00:00:05]: lua_gc took 0.02 seconds [00:00:05]: ~ShardLuaProxy() [00:00:05]: ~ItemServerLuaProxy() [00:00:05]: ~InventoryLuaProxy() [00:00:05]: ~NetworkLuaProxy() [00:00:05]: ~SimLuaProxy() [00:00:05]: FilesExistAsyncThread aborted. [00:00:05]: ... FilesExistAsyncThread complete [00:00:05]: lua_close took 0.03 seconds [00:00:05]: ReleaseAll [00:00:05]: ReleaseAll Finished [00:00:05]: cGame::StartPlaying [00:00:05]: LOADING LUA [00:00:05]: DoLuaFile scripts/main.lua [00:00:05]: DoLuaFile loading buffer scripts/main.lua [00:00:05]: taskgrouplist: default Together [00:00:05]: taskgrouplist: classic Classic [00:00:05]: taskgrouplist: cave_default Underground [00:00:05]: taskgrouplist: lavaarena_taskset The Forge [00:00:05]: running main.lua [00:00:05]: loaded modindex [00:00:05]: ModIndex: Beginning normal load sequence for dedicated server. [00:00:05]: modoverrides.lua enabling workshop-1311366056 [00:00:05]: modoverrides.lua enabling workshop-378160973 [00:00:05]: modoverrides.lua enabling workshop-514078314 [00:00:05]: modoverrides.lua enabling workshop-666155465 [00:00:05]: ModIndex:GetModsToLoad inserting moddir, workshop-1311366056 [00:00:05]: ModIndex:GetModsToLoad inserting moddir, workshop-378160973 [00:00:05]: ModIndex:GetModsToLoad inserting moddir, workshop-514078314 [00:00:05]: ModIndex:GetModsToLoad inserting moddir, workshop-666155465 [00:00:05]: Could not load mod_config_data/modconfiguration_workshop-1311366056 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-1311366056 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-378160973 [00:00:05]: Overriding mod workshop-378160973's option FIREOPTIONS with value 2 [00:00:05]: Overriding mod workshop-378160973's option SHOWFIREICONS with value true [00:00:05]: Overriding mod workshop-378160973's option SHAREMINIMAPPROGRESS with value true [00:00:05]: Overriding mod workshop-378160973's option SHOWPLAYERICONS with value true [00:00:05]: Overriding mod workshop-378160973's option OVERRIDEMODE with value false [00:00:05]: Overriding mod workshop-378160973's option SHOWPLAYERSOPTIONS with value 2 [00:00:05]: Overriding mod workshop-378160973's option ENABLEPINGS with value true [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-514078314 [00:00:05]: Overriding mod workshop-514078314's option EnableIndividualization with value false [00:00:05]: Overriding mod workshop-514078314's option EnableNonPlayerSpeed with value false [00:00:05]: Overriding mod workshop-514078314's option InsulationDuration with value 480 [00:00:05]: Overriding mod workshop-514078314's option SpeedyTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option SpeedyTurfSpeeds with value 1.25 [00:00:05]: Overriding mod workshop-514078314's option RainProtectingTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option SanityTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option InsulatingTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option EnableFlooringPlanting with value false [00:00:05]: Overriding mod workshop-514078314's option EnableGameTurfRecipes with value 1 [00:00:05]: Overriding mod workshop-514078314's option EnableTurfedTurfRecipes with value 1 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-666155465 [00:00:05]: Overriding mod workshop-666155465's option lang with value auto [00:00:05]: Overriding mod workshop-666155465's option food_order with value 0 [00:00:05]: Overriding mod workshop-666155465's option show_food_units with value 1 [00:00:05]: Overriding mod workshop-666155465's option food_estimation with value 1 [00:00:05]: Overriding mod workshop-666155465's option food_style with value 1 [00:00:05]: Loading mod: workshop-1311366056 (Potted Plants (DST)) Version:1.0 [00:00:05]: Could not load mod_config_data/modconfiguration_workshop-378160973 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-1311366056 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-378160973 [00:00:05]: Overriding mod workshop-378160973's option FIREOPTIONS with value 2 [00:00:05]: Overriding mod workshop-378160973's option SHOWFIREICONS with value true [00:00:05]: Overriding mod workshop-378160973's option SHAREMINIMAPPROGRESS with value true [00:00:05]: Overriding mod workshop-378160973's option SHOWPLAYERICONS with value true [00:00:05]: Overriding mod workshop-378160973's option OVERRIDEMODE with value false [00:00:05]: Overriding mod workshop-378160973's option SHOWPLAYERSOPTIONS with value 2 [00:00:05]: Overriding mod workshop-378160973's option ENABLEPINGS with value true [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-514078314 [00:00:05]: Overriding mod workshop-514078314's option EnableIndividualization with value false [00:00:05]: Overriding mod workshop-514078314's option EnableNonPlayerSpeed with value false [00:00:05]: Overriding mod workshop-514078314's option InsulationDuration with value 480 [00:00:05]: Overriding mod workshop-514078314's option SpeedyTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option SpeedyTurfSpeeds with value 1.25 [00:00:05]: Overriding mod workshop-514078314's option RainProtectingTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option SanityTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option InsulatingTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option EnableFlooringPlanting with value false [00:00:05]: Overriding mod workshop-514078314's option EnableGameTurfRecipes with value 1 [00:00:05]: Overriding mod workshop-514078314's option EnableTurfedTurfRecipes with value 1 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-666155465 [00:00:05]: Overriding mod workshop-666155465's option lang with value auto [00:00:05]: Overriding mod workshop-666155465's option food_order with value 0 [00:00:05]: Overriding mod workshop-666155465's option show_food_units with value 1 [00:00:05]: Overriding mod workshop-666155465's option food_estimation with value 1 [00:00:05]: Overriding mod workshop-666155465's option food_style with value 1 [00:00:05]: Loading mod: workshop-378160973 (Global Positions) Version:1.7.3 [00:00:05]: Could not load mod_config_data/modconfiguration_workshop-514078314 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-1311366056 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-378160973 [00:00:05]: Overriding mod workshop-378160973's option FIREOPTIONS with value 2 [00:00:05]: Overriding mod workshop-378160973's option SHOWFIREICONS with value true [00:00:05]: Overriding mod workshop-378160973's option SHAREMINIMAPPROGRESS with value true [00:00:05]: Overriding mod workshop-378160973's option SHOWPLAYERICONS with value true [00:00:05]: Overriding mod workshop-378160973's option OVERRIDEMODE with value false [00:00:05]: Overriding mod workshop-378160973's option SHOWPLAYERSOPTIONS with value 2 [00:00:05]: Overriding mod workshop-378160973's option ENABLEPINGS with value true [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-514078314 [00:00:05]: Overriding mod workshop-514078314's option EnableIndividualization with value false [00:00:05]: Overriding mod workshop-514078314's option EnableNonPlayerSpeed with value false [00:00:05]: Overriding mod workshop-514078314's option InsulationDuration with value 480 [00:00:05]: Overriding mod workshop-514078314's option SpeedyTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option SpeedyTurfSpeeds with value 1.25 [00:00:05]: Overriding mod workshop-514078314's option RainProtectingTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option SanityTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option InsulatingTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option EnableFlooringPlanting with value false [00:00:05]: Overriding mod workshop-514078314's option EnableGameTurfRecipes with value 1 [00:00:05]: Overriding mod workshop-514078314's option EnableTurfedTurfRecipes with value 1 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-666155465 [00:00:05]: Overriding mod workshop-666155465's option lang with value auto [00:00:05]: Overriding mod workshop-666155465's option food_order with value 0 [00:00:05]: Overriding mod workshop-666155465's option show_food_units with value 1 [00:00:05]: Overriding mod workshop-666155465's option food_estimation with value 1 [00:00:05]: Overriding mod workshop-666155465's option food_style with value 1 [00:00:05]: Loading mod: workshop-514078314 (Turfed!) Version:1.4 [00:00:05]: Could not load mod_config_data/modconfiguration_workshop-666155465 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-1311366056 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-378160973 [00:00:05]: Overriding mod workshop-378160973's option FIREOPTIONS with value 2 [00:00:05]: Overriding mod workshop-378160973's option SHOWFIREICONS with value true [00:00:05]: Overriding mod workshop-378160973's option SHAREMINIMAPPROGRESS with value true [00:00:05]: Overriding mod workshop-378160973's option SHOWPLAYERICONS with value true [00:00:05]: Overriding mod workshop-378160973's option OVERRIDEMODE with value false [00:00:05]: Overriding mod workshop-378160973's option SHOWPLAYERSOPTIONS with value 2 [00:00:05]: Overriding mod workshop-378160973's option ENABLEPINGS with value true [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-514078314 [00:00:05]: Overriding mod workshop-514078314's option EnableIndividualization with value false [00:00:05]: Overriding mod workshop-514078314's option EnableNonPlayerSpeed with value false [00:00:05]: Overriding mod workshop-514078314's option InsulationDuration with value 480 [00:00:05]: Overriding mod workshop-514078314's option SpeedyTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option SpeedyTurfSpeeds with value 1.25 [00:00:05]: Overriding mod workshop-514078314's option RainProtectingTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option SanityTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option InsulatingTurfs with value 0 [00:00:05]: Overriding mod workshop-514078314's option EnableFlooringPlanting with value false [00:00:05]: Overriding mod workshop-514078314's option EnableGameTurfRecipes with value 1 [00:00:05]: Overriding mod workshop-514078314's option EnableTurfedTurfRecipes with value 1 [00:00:05]: applying configuration_options from modoverrides.lua to mod workshop-666155465 [00:00:05]: Overriding mod workshop-666155465's option lang with value auto [00:00:05]: Overriding mod workshop-666155465's option food_order with value 0 [00:00:05]: Overriding mod workshop-666155465's option show_food_units with value 1 [00:00:05]: Overriding mod workshop-666155465's option food_estimation with value 1 [00:00:05]: Overriding mod workshop-666155465's option food_style with value 1 [00:00:05]: Loading mod: workshop-666155465 (Show Me) Version:0.37 [00:00:05]: Mod: workshop-666155465 (Show Me) Loading modworldgenmain.lua [00:00:05]: Mod: workshop-666155465 (Show Me) Mod had no modworldgenmain.lua. Skipping. [00:00:05]: Mod: workshop-666155465 (Show Me) Loading modmain.lua [00:00:05]: ShowMe version: 0.37 [00:00:05]: Mod: workshop-514078314 (Turfed!) Loading modworldgenmain.lua [00:00:05]: modimport: ../mods/workshop-514078314/tile_adder.lua [00:00:05]: [SetTileTypeProperty(10,turfed,table: 064EDD68)] Property 'turfed' of tile type 10 (WOODFLOOR) set to 'table: 064EDD68'. [00:00:05]: [SetTileTypeProperty(12,turfed,table: 064EDD68)] Property 'turfed' of tile type 12 (CHECKER) set to 'table: 064EDD68'. [00:00:05]: [SetTileTypeProperty(11,turfed,table: 064EDD68)] Property 'turfed' of tile type 11 (CARPET) set to 'table: 064EDD68'. [00:00:05]: [SetTileTypeProperty(32,turfed,table: 064EDD68)] Property 'turfed' of tile type 32 (SCALE) set to 'table: 064EDD68'. [00:00:05]: Mod: workshop-514078314 (Turfed!) Loading modmain.lua [00:00:05]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:05]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:05]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:05]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:05]: Warning: Calling Recipe from a mod is now deprecated. Please call AddRecipe from your modmain.lua file. [00:00:05]: Mod: workshop-1311366056 (Potted Plants (DST)) Loading modworldgenmain.lua [00:00:05]: Mod: workshop-1311366056 (Potted Plants (DST)) Loading modmain.lua [00:00:05]: Mod: workshop-378160973 (Global Positions) Loading modworldgenmain.lua [00:00:05]: Mod: workshop-378160973 (Global Positions) Mod had no modworldgenmain.lua. Skipping. [00:00:05]: Mod: workshop-378160973 (Global Positions) Loading modmain.lua [00:00:05]: ModIndex:GetModsToLoad inserting moddir, workshop-1311366056 [00:00:05]: ModIndex:GetModsToLoad inserting moddir, workshop-378160973 [00:00:05]: ModIndex:GetModsToLoad inserting moddir, workshop-514078314 [00:00:05]: ModIndex:GetModsToLoad inserting moddir, workshop-666155465 [00:00:05]: LOADING LUA SUCCESS [00:00:05]: Registering mod namespace "workshop-378160973" [00:00:05]: Registering mod namespace "showmehint" [00:00:05]: Registering mod namespace "showme" [00:00:05]: PlayerDeaths could not load morgue [00:00:05]: PlayerHistory could not load player_history [00:00:05]: bloom_enabled false [00:00:05]: loaded saveindex [00:00:05]: OnFilesLoaded() [00:00:05]: OnUpdatePurchaseStateComplete [00:00:05]: Loading world: session/10662813FD00AD5F/0000002405 [00:00:06]: Save file is at version 4.77 [00:00:06]: Unload FE [00:00:06]: Unload FE done [00:00:07]: Mod: workshop-666155465 (Show Me) Registering prefabs [00:00:07]: Mod: workshop-666155465 (Show Me) Registering default mod prefab [00:00:07]: Mod: workshop-514078314 (Turfed!) Registering prefabs [00:00:07]: Mod: workshop-514078314 (Turfed!) Registering prefab file: prefabs/turf_test [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_test [00:00:07]: Mod: workshop-514078314 (Turfed!) Registering prefab file: prefabs/turfed_turfs [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetblackfur [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetblue [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetcamo [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetfur [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetpink [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetpurple [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetred [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetred2 [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpettd [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_carpetwifi [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_natureastroturf [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_naturedesert [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_rockblacktop [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_rockgiraffe [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_rockmoon [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_rockyellowbrick [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_tilefrosty [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_tilecheckerboard [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_tilesquares [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_wooddark [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_woodcherry [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_woodpine [00:00:07]: Mod: workshop-514078314 (Turfed!) turf_spikes [00:00:07]: Mod: workshop-514078314 (Turfed!) Registering default mod prefab [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefabs [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedflower [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedflower [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedflower_placer [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedevilflower [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedevilflower [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedevilflower_placer [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedcactus [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedcactus [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedcactus_placer [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedrose [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedrose [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedrose_placer [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedgreenmushroom [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedgreenmushroom [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedgreenmushroom_placer [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedredmushroom [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedredmushroom [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedredmushroom_placer [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering prefab file: prefabs/pottedbluemushroom [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedbluemushroom [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) pottedbluemushroom_placer [00:00:07]: Mod: workshop-1311366056 (Potted Plants (DST)) Registering default mod prefab [00:00:07]: AddPortMapping(10999, 10999, 192.168.178.24) failed with code 403 (UnknownError) [00:00:07]: AddPortMapping(10999, 10999, 192.168.178.24) failed with code 403 (UnknownError) [00:00:07]: Mod: workshop-378160973 (Global Positions) Registering prefabs [00:00:07]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/globalposition_classified [00:00:07]: Mod: workshop-378160973 (Global Positions) globalposition_classified [00:00:07]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/smoketrail [00:00:07]: Mod: workshop-378160973 (Global Positions) smoketrail [00:00:07]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/globalmapicon_noproxy [00:00:07]: Mod: workshop-378160973 (Global Positions) globalmapicon_noproxy [00:00:07]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/worldmapexplorer [00:00:07]: Mod: workshop-378160973 (Global Positions) worldmapexplorer [00:00:07]: Mod: workshop-378160973 (Global Positions) Registering prefab file: prefabs/pings [00:00:07]: Mod: workshop-378160973 (Global Positions) ping_generic [00:00:07]: Mod: workshop-378160973 (Global Positions) ping_omw [00:00:07]: Mod: workshop-378160973 (Global Positions) ping_danger [00:00:07]: Mod: workshop-378160973 (Global Positions) ping_explore [00:00:07]: Mod: workshop-378160973 (Global Positions) ping_gohere [00:00:07]: Mod: workshop-378160973 (Global Positions) Registering default mod prefab [00:00:07]: LOAD BE [00:00:09]: LOAD BE: done [00:00:09]: Begin Session: 10662813FD00AD5F [00:00:09]: saving to server_temp/server_save [00:00:09]: MiniMapComponent::AddAtlas( minimap/minimap_data.xml ) [00:00:09]: MiniMapComponent::AddAtlas( ../mods/workshop-378160973/minimap/campfire.xml ) [00:00:09]: MiniMapComponent::AddAtlas( ../mods/workshop-378160973/minimap/ping_generic.xml ) [00:00:09]: MiniMapComponent::AddAtlas( ../mods/workshop-378160973/minimap/ping_gohere.xml ) [00:00:09]: MiniMapComponent::AddAtlas( ../mods/workshop-378160973/minimap/ping_explore.xml ) [00:00:09]: MiniMapComponent::AddAtlas( ../mods/workshop-378160973/minimap/ping_danger.xml ) [00:00:09]: MiniMapComponent::AddAtlas( ../mods/workshop-378160973/minimap/ping_omw.xml ) [00:00:10]: Loading Nav Grid [00:00:10]: setting summerlength 15 [00:00:10]: setting isnightmaredawn false [00:00:10]: setting elapseddaysinseason 7 [00:00:10]: setting isfullmoon false [00:00:10]: setting moisture 5956.328125 [00:00:10]: setting springlength 20 [00:00:10]: setting isnightmarewild false [00:00:10]: setting moonphase threequarter [00:00:10]: setting precipitationrate 0 [00:00:10]: setting iswet false [00:00:10]: setting isnewmoon false [00:00:10]: setting iswinter false [00:00:10]: setting israining false [00:00:10]: setting isnightmarewarn false [00:00:10]: setting precipitation none [00:00:10]: setting cavephase day [00:00:10]: setting moistureceil 11998.198242188 [00:00:10]: setting isday true [00:00:10]: setting iscaveday true [00:00:10]: setting season autumn [00:00:10]: setting timeinphase 0.25729440053304 [00:00:10]: setting temperature 43.239538336764 [00:00:10]: setting isnightmarecalm false [00:00:10]: setting isnight false [00:00:10]: setting isdusk false [00:00:10]: setting iscavedusk false [00:00:10]: setting isautumn true [00:00:10]: setting issnowing false [00:00:10]: setting iswaxingmoon true [00:00:10]: setting pop 0.34861303732022 [00:00:10]: setting snowlevel 0 [00:00:10]: setting issnowcovered false [00:00:10]: setting autumnlength 30 [00:00:10]: setting phase day [00:00:10]: setting nightmaretime 0 [00:00:10]: setting winterlength 15 [00:00:10]: setting isspring false [00:00:10]: setting nightmarephase none [00:00:10]: setting remainingdaysinseason 23 [00:00:10]: setting cycles 2247 [00:00:10]: setting iscavenight false [00:00:10]: setting nightmaretimeinphase 0 [00:00:10]: setting wetness 0 [00:00:10]: setting time 0.12864720026652 [00:00:10]: setting issummer false [00:00:17]: Reconstructing topology [00:00:17]: ...Sorting points [00:00:17]: ...Sorting edges [00:00:17]: ...Connecting nodes [00:00:17]: ...Validating connections [00:00:17]: ...Housekeeping [00:00:17]: ...Done! [00:00:17]: 1 uploads added to server. From server_temp [00:00:17]: About to start a shard with these settings: [00:00:17]: ShardName: [SHDMASTER] [00:00:17]: ShardID: 1 [00:00:17]: ShardRole: MASTER [00:00:17]: MasterHost: (null) [00:00:17]: MasterBind: 127.0.0.1 [00:00:17]: MasterPort: 10888 [00:00:17]: [Shard] Starting master server [00:00:17]: [Warning] Could not confirm port 10888 is open in the firewall. [00:00:17]: [Shard] Shard server started on port: 10888 [00:00:17]: [IPC] Signal 'DST_Master_Ready' opened #000003D4 [00:00:17]: [IPC] Sending signal... #000003D4 [00:00:17]: Telling Client our new session identifier: 10662813FD00AD5F [00:00:17]: ModIndex: Load sequence finished successfully. [00:00:19]: Reset() returning [00:00:19]: [Steam] SteamGameServer_Init(8766, 10999, 27016) [00:00:19]: [Steam] SteamGameServer_Init success [00:00:20]: Validating portal[10] <-> 1672802778[10] (inactive) [00:00:20]: Validating portal[5] <-> 1672802778[5] (inactive) [00:00:20]: Validating portal[8] <-> 1672802778[8] (inactive) [00:00:20]: Validating portal[6] <-> 1672802778[6] (inactive) [00:00:20]: Validating portal[4] <-> 1672802778[4] (inactive) [00:00:20]: Validating portal[7] <-> 1672802778[7] (inactive) [00:00:20]: Validating portal[9] <-> 1672802778[9] (inactive) [00:00:20]: Validating portal[2] <-> 1672802778[2] (inactive) [00:00:20]: Validating portal[1] <-> 1672802778[1] (inactive) [00:00:20]: Validating portal[3] <-> 1672802778[3] (inactive) [00:00:20]: Sim paused [00:00:21]: [Shard] Slave Caves(1672802778) connected: [LAN] 127.0.0.1 [00:00:22]: [Shard] Slave Caves(1672802778) ready! [00:00:22]: World 1672802778 is now connected [00:00:22]: Validating portal[10] <-> 1672802778[10] (active) [00:00:22]: Validating portal[5] <-> 1672802778[5] (active) [00:00:22]: Validating portal[8] <-> 1672802778[8] (active) [00:00:22]: Validating portal[6] <-> 1672802778[6] (disabled) [00:00:22]: Validating portal[4] <-> 1672802778[4] (active) [00:00:22]: Validating portal[7] <-> 1672802778[7] (active) [00:00:22]: Validating portal[9] <-> 1672802778[9] (active) [00:00:22]: Validating portal[2] <-> 1672802778[2] (disabled) [00:00:22]: Validating portal[1] <-> 1672802778[1] (active) [00:00:22]: Validating portal[3] <-> 1672802778[3] (active) [00:00:24]: New incoming connection 127.0.0.1|55773 <3077162625452612429> [00:00:24]: Client connected from [LAN] 127.0.0.1|55773 <3077162625452612429> [00:00:24]: ValidateGameSessionToken pgs-usc^KU_JwKTqzT9^DontStarveTogether^7uOaE2N56jwNZSvnKwPKxfR096qAawOtAqSDx3HGoZ4= for <3077162625452612429> [00:00:24]: Client authenticated: (KU_JwKTqzT9) disies [00:00:24]: [Steam] Authenticated host '76561198070613654' [00:00:26]: [Shard] Read save location file for (KU_JwKTqzT9) [00:00:34]: Resuming user: session/10662813FD00AD5F/KU_JwKTqzT9_/0000002405 [00:00:34]: Spawning player at: [Load] (-248.01, 0.00, 264.70) [00:00:34]: Sim unpaused [00:00:58]: [(KU_JwKTqzT9) disies] ReceiveRemoteExecute(c_save()) @(-249.59, 277.39) [00:00:59]: Serializing user: session/10662813FD00AD5F/KU_JwKTqzT9_/0000002406 [00:01:00]: Serializing world: session/10662813FD00AD5F/0000002406 [00:01:11]: [Steam] SendUserDisconnect for '76561198070613654' [00:01:11]: [Shard] (KU_JwKTqzT9) disconnected from [SHDMASTER](1) [00:01:11]: [IPC] Received shutdown signal. [00:01:11]: Serializing user: session/10662813FD00AD5F/KU_JwKTqzT9_/0000002407 [00:01:11]: Serializing world: session/10662813FD00AD5F/0000002407 [00:01:11]: Truncating to snapshot #2407... [00:01:11]: - session/10662813FD00AD5F/0000002400 [00:01:11]: - session/10662813FD00AD5F/0000002401 [00:01:11]: - session/10662813FD00AD5F/KU_JwKTqzT9_/0000002401 [00:01:11]: - session/10662813FD00AD5F/KU_JwKTqzT9_/0000002400 [00:01:11]: - session/10662813FD00AD5F/KU_Yl3HksaX_/0000002401 [00:01:11]: - session/10662813FD00AD5F/KU_Yl3HksaX_/0000002400 [00:01:11]: 6 file(s) removed [00:01:11]: unloading prefabs for mod MOD_workshop-666155465 [00:01:11]: unloading prefabs for mod MOD_workshop-514078314 [00:01:11]: unloading prefabs for mod MOD_workshop-1311366056 [00:01:11]: unloading prefabs for mod MOD_workshop-378160973 [00:01:11]: [Shard] Stopping shard mode [00:01:12]: Collecting garbage... [00:01:12]: lua_gc took 0.24 seconds [00:01:12]: ~ShardLuaProxy() [00:01:12]: ~ItemServerLuaProxy() [00:01:12]: ~InventoryLuaProxy() [00:01:12]: ~NetworkLuaProxy() [00:01:12]: ~SimLuaProxy() [00:01:12]: lua_close took 0.50 seconds [00:01:13]: Manager - ORPHANED UNKNOWN RESOURCES: [00:01:13]: shaders/ui_yuv.ksh - 1 [00:01:13]: CurlRequestManager::ClientThread::Main() complete [00:01:13]: HttpClient2 discarded 1 callbacks. [00:01:13]: Shutting down I'd like to point out that this happens also with a world in which NO mods were active. Also, when using the console I do this (just to confirm and making sure it's correct): (Currently testing again in a world without mods and in godmode.) _open console_ Remote: TheWorld.topology.overrides.disease_delay = "none" c_save() c_reload() At c_save it actually saves at this point and at c_reload it doesn't do anything. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015814 Share on other sites More sharing options...
Daniel86268 Posted March 16, 2018 Share Posted March 16, 2018 Did you put the "Remote: " in front of your command in the console, or did you have it in front of the console? (As a purple Prefix) I didn't see any commands going on in the server log, it seems that the server didn't get any remote command. Or did you issue the command in that log at all? I just noticed, that I typed in c_reload(), but it's c_reset(), so that explains why it didn't reload. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015822 Share on other sites More sharing options...
disies Posted March 16, 2018 Share Posted March 16, 2018 How do you put the remote in front? When copy/pasting it actually changed to Local, so typed it in and Remote stayed. Tested again with "LongUpdate()" and no disease so far (i skipped 1000 days to make sure). Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015826 Share on other sites More sharing options...
Daniel86268 Posted March 16, 2018 Share Posted March 16, 2018 26 minutes ago, disies said: How do you put the remote in front? When copy/pasting it actually changed to Local, so typed it in and Remote stayed. Tested again with "LongUpdate()" and no disease so far (i skipped 1000 days to make sure). 21 hours ago, Daniel86268 said: It happens VERY often that people "ctrl+v" it into their ingame command line where "crtl" toggles the "Remote: " thingy. Press "crtl" again to enable it again. <Ctrl> toggles it, which is kinda inconvenient, considering that <ctrl>+<v> is the keycombination for pasting. Pressing <ctrl> again enables the "Remote: " again. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015832 Share on other sites More sharing options...
disies Posted March 16, 2018 Share Posted March 16, 2018 8 minutes ago, Daniel86268 said: <Ctrl> toggles it, which is kinda inconvenient, considering that <ctrl>+<v> is the keycombination for pasting. Pressing <ctrl> again enables the "Remote: " again. I see. Well I hope I did everything correctly this time. Thanks again! Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015834 Share on other sites More sharing options...
Mr. Matt Posted March 16, 2018 Share Posted March 16, 2018 Why turn off petrification? Its only more stone plus world regrowth will take place when you mine all the trees. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1015868 Share on other sites More sharing options...
kertinker Posted March 16, 2018 Share Posted March 16, 2018 7 hours ago, Mr. Matt said: Why turn off petrification? Its only more stone plus world regrowth will take place when you mine all the trees. Generally because it spreads too quickly, turns all forests into stony wastelands, is a pain to mine clear, and world regrowth takes forever, if you're out of wood. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1016031 Share on other sites More sharing options...
Daniel86268 Posted March 16, 2018 Share Posted March 16, 2018 55 minutes ago, kertinker said: Generally because it spreads too quickly, turns all forests into stony wastelands, is a pain to mine clear, and world regrowth takes forever, if you're out of wood. This. At least there's Bearger to give you a hand by hugging a forest of those stony trees within minutes. Always keep a few stacks of cones in a chest though, so you can easily replant the first trees of your forest, so regrowth doesn't take over an ingame year. Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1016052 Share on other sites More sharing options...
fimmatek Posted March 16, 2018 Share Posted March 16, 2018 Maybe the devs They want us to make our lives a bit harder by luring us back to birchnut trees? We have the choice: birchnut trees don't always drop 2 birchnunt, but if we can handle it, we have a forest that never petrifies, while pines give 2 cones but can suddenly turn into stone. I know that fealing, happened to me as well. Luckyly we had plenty cones on stock (thanks to our Woodie). Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1016057 Share on other sites More sharing options...
Mr. Matt Posted March 16, 2018 Share Posted March 16, 2018 23 minutes ago, Daniel86268 said: This. At least there's Bearger to give you a hand by hugging a forest of those stony trees within minutes. Always keep a few stacks of cones in a chest though, so you can easily replant the first trees of your forest, so regrowth doesn't take over an ingame year. exactly Link to comment https://forums.kleientertainment.com/forums/topic/86340-turning-off-disease/#findComment-1016058 Share on other sites More sharing options...
Recommended Posts
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.