饑荒怎么開瞬移 饑荒瞬移mod
饑荒游戲中有些開了全圖的玩家想要瞬移,那么,如何達到這個效果呢?感興趣的玩家快來學習一下吧。
打開dont_starve\data\scripts\main.lua
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
)
網(wǎng)名 注:您的評論需要經(jīng)過審核才會顯示出來。提交評論
查看所有0條評論>>