TwardyBrzoskwin Posted December 1, 2018 Share Posted December 1, 2018 Does anyone have a link to that mod? I was using it like 2 years ago and I cant find it now :/ Link to comment Share on other sites More sharing options...
bjanmanjs Posted December 2, 2018 Share Posted December 2, 2018 That mod has been removed from the Steam Workshop. Its functionality can be achieved with a mod by adding the 'cooker' component to the 'coldfire' and 'coldfirepit' prefabs. A guide on how to do this is as follows: Right click "Don't Starve Together" in your steam library and then click on "Properties". Go under the "LOCAL FILES" tab and then click "BROWSE LOCAL FILES...". Open the "mods" folder and then create a new folder inside it. Create two new text documents inside the new folder and rename them to 'modinfo.lua' and 'modmain.lua'. Put the following code into the modinfo file, fill in the quotation marks with what you want the name, description, and author to be. name = "" description = "" author = "" dst_compatible = true Put the following code into the modmain file. function MakeCooker(inst) inst:AddComponent("cooker") end AddPrefabPostInit("coldfire", MakeCooker) AddPrefabPostInit("coldfirepit", MakeCooker) Link to comment 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.