饑荒怎么開(kāi)瞬移 饑荒瞬移mod
饑荒游戲中有些開(kāi)了全圖的玩家想要瞬移,那么,如何達(dá)到這個(gè)效果呢?感興趣的玩家快來(lái)學(xué)習(xí)一下吧。
打開(kāi)dont_starve\data\scripts\main.lua
ModManager: LoadMods()——這一行前面)添加以下代碼,保存,進(jìn)游戲后ctrl+1地圖全開(kāi),ctrl+2瞬移到鼠標(biāo)所在位置。
--地圖全開(kāi)
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
)
查看所有0條評(píng)論>>