网络游戏

《饥荒》4.10中英版地图全开MOD方法

2021-01-08 作者: admin 来源:网络 整理:游戏131(www.youxi131.com)

《饥荒》地图全开方法 怎么才能解锁所有地图

理论全版本通用,至少从4.10开始之后的中英文版本适用
找到游戏中main.lua,文件,地址在dont_starve\data\scripts,用记事本打开,拖到最后,在最后一行(即ModManager:LoadMods()——这一行前面)添加以下代码,保存,进游戏后ctrl+1地图全开,ctrl+2瞬移到鼠标所在位置。建议修改前保存原文件!!!
--地图全开
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
)

饥荒地图全开MOD方法 地图MOD怎么使用

巴士饥荒游戏专题 饥荒全开地图   饥荒地图全开的方法:   找到游戏中main.lua,文件,地址在dont_starve\data\scripts,用记事本打开,拖到最后,在最后一行(即ModManager:LoadMods()这一行前面)添加以下代码,保存,进游戏后ctrl+1地图全开,ctrl+2瞬移到鼠标所在位置。建议修改前保存原文件!!!    --地图全开   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);   修改文件的时候可能会遇到版本冲突问题,但是对于广大的玩家用户都是可以通过这种方式解决。

饥荒145279 全地图显示MOD 或者是办法。

联机的话不知道,单机的话可以用记事本打开游戏目录\data\DLC0001\scripts\prefabs\player_common.lua文件,在inst:AddComponent("resurrectable")下一行插入以下内容:

TheInput:AddKeyUpHandler(KEY_1, function()
if TheInput:IsKeyDown(KEY_CTRL) then
local map = TheSim:FindFirstEntityWithTag("minimap")
local x,y,z = GetPlayer().Transform:GetWorldPosition()
map.MiniMap:ShowArea(x, y, z, 10000)
end
end)

即可在游戏中按Ctrl + 1使地图全开

饥荒地图全开mod怎么用

这个mod是自动生效,进游戏就地图全开,如果没有就是mod安装不成功

饥荒地图全开(改文件)如何弄

用记事本打开游戏目录\data\scripts\prefabs\player_common.lua文件,在inst:AddComponent("resurrectable")下一行插入以下内容:
TheInput:AddKeyUpHandler(KEY_1, function()
if TheInput:IsKeyDown(KEY_CTRL) then
local map = TheSim:FindFirstEntityWithTag("minimap")
local x,y,z = GetPlayer().Transform:GetWorldPosition()
map.MiniMap:ShowArea(x, y, z, 10000)
end
end)
即可在游戏中按Ctrl + 1使地图全开
。。。。。。。。。。。。。。或者下载地图全开mod
答题不易,望采纳。