andy168510 发表于 2014-4-8 23:20

求地下水管跟傳送帶的修改長度,想改長一點

求地下水管跟傳送帶的修改長度,想改長一點求地下水管跟傳送帶的修改長度,想改長一點

q125317684 发表于 2014-4-9 19:34

地下管道
請用記事本打開遊戲目錄底下 \data\base\prototypes\entity\demo-entities.lua 檔案
搜尋 max_underground_distance 字串
將後面的數值10,改成你要的數值
(注意!最大值只可到255,數值超過255,遊戲會崩潰!)


________________________________________


地下輸送帶
請用記事本打開遊戲目錄底下 \data\base\prototypes\entity\entities.lua 檔案
一般地下輸送帶
請搜尋 max_distance
將後面的數值5,改成你要的數值
(注意!最大值只可到255,數值超過255,輸送距離會失效!)


高速地下傳送帶
請搜尋 fast-transport-belt-to-ground
1.          type = "transport-belt-to-ground",
2.          name = "fast-transport-belt-to-ground",
3.          icon = "__base__/graphics/icons/fast-transport-belt-to-ground.png",
4.          flags = {"placeable-neutral", "player-creation", "fast-replaceable-no-build-while-moving"},
5.          minable = {hardness = 0.2, mining_time = 0.5, result = "fast-transport-belt-to-ground"},
6.          max_health = 60,
7.          corpse = "small-remnants",
8.          underground_sprite =
复制代码
原始文件裡少了行字串
請添加字串 max_distance = 255, 至以下位置
1.          type = "transport-belt-to-ground",
2.          name = "fast-transport-belt-to-ground",
3.          icon = "__base__/graphics/icons/fast-transport-belt-to-ground.png",
4.          flags = {"placeable-neutral", "player-creation", "fast-replaceable-no-build-while-moving"},
5.          minable = {hardness = 0.2, mining_time = 0.5, result = "fast-transport-belt-to-ground"},
6.          max_health = 60,
7.          corpse = "small-remnants",
8.          max_distance = 255,
9.          underground_sprite =
复制代码


超高速地下輸送帶
請搜尋 express-transport-belt-to-ground
方法同上面一樣,自行添加字串 max_distance = 255,

andy168510 发表于 2014-4-11 00:15

3QQQQQQQQQQQ
页: [1]
查看完整版本: 求地下水管跟傳送帶的修改長度,想改長一點