soohkooh2009 发表于 2013-6-20 00:04

谁做个6.12全亮MOD,老的不能用了

所有MOD这个是最有用的。可以开局看下地形如何。谁给重新做个吧。好久没更新了还是4月10号的

zspeng1209 发表于 2013-6-20 01:40

打开dont_starve\data\scripts\main.lua
最下面粘贴如下代码 进游戏ctrl+1

--地图全开
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
);

soohkooh2009 发表于 2013-6-20 22:28

谢谢楼上的
页: [1]
查看完整版本: 谁做个6.12全亮MOD,老的不能用了