跑跑车首页

当前位置:首页攻略秘籍单机攻略 → 饥荒怎么开瞬移 饥荒瞬移mod

饥荒怎么开瞬移 饥荒瞬移mod

作者:佚名来源:本站整理 发表时间: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
)


玩家评论
我要点评

网名 注:您的评论需要经过审核才会显示出来。

已有 0 位玩家参与点评
下载排行