饥荒地图全开的mod及相关方法:Map Revealer 功能:可以直接点亮整张地图,显示所有地形和资源点。获取途径:可在Steam Workshop等资源站获取。Global Positions 功能:同样能够实现地图全开,方便玩家查看全图信息。获取途径:可在3DM等资源站下载。手动修改代码:适用版本:理论上全版本通用,至少从4.10开始之后的中英文版本适用。

饥荒地图全开mod如何获得

修改方法:找到游戏中的main.lua文件,地址在dont_starve\data\scripts,用记事本打开,拖到最后,在最后一行(即ModManager:LoadMods()这一行前面)添加以下代码。--地图全开 TheInput:AddKeyUpHandler(KEY_1, function()     if TheInput:IsKeyDown(KEY_CTRL) then         local MainCharacter = TheSim:FindFirstEntityWithTag("player")         local map = TheSim:FindFirstEntityWithTag("minimap")         if MainCharacter and map then             local x, y, z = MainCharacter.Transform:GetWorldPosition()             map.MiniMap:ShowArea(x, y, z, 10000)         end     end end ); --传送 TheInput:AddKeyUpHandler(KEY_2, function()     if TheInput:IsKeyDown(KEY_CTRL) then         local player = TheSim:FindFirstEntityWithTag("player");         player.Transform:SetPosition(TheInput:GetMouseWorldPos():Get())     end end )