跑跑車首頁

當前位置:首頁攻略秘籍單機攻略 → 饑荒怎么開瞬移 饑荒瞬移mod

饑荒怎么開瞬移 饑荒瞬移mod

作者:佚名來源:本站整理 發(fā)表時間:2016/3/9 17:05:51 評論(0)

饑荒游戲中有些開了全圖的玩家想要瞬移,那么,如何達到這個效果呢?感興趣的玩家快來學習一下吧。

饑荒怎么開瞬移 饑荒瞬移代碼介紹

打開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 位玩家參與點評
下載排行