安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
function SCampfireGlobalObject:syncContainer()
self.transmitContainer = false
local isoObject = self:getIsoObject()
local container = self:getContainer()
if not container then
self:addContainer()
self.transmitContainer = isServer()
elseif isoObject:getContainerCount() ~= 1 or container:getType() ~= "campfire" then
for i=1,isoObject:getContainerCount() do
container = isoObject:getContainerByIndex(i-1)
container:removeItemsFromProcessItems()
container:removeAllItems()
end
isoObject:removeAllContainers()
self:addContainer()
self.transmitContainer = isServer()
end
Maybe it will help, part of the script from the campfire?
1) The items in the furnace don't show as melting or changing to iron. However they are - if after enough time has passed you try to remove items from the furnace you will get nothing. And though it is not displaying in the UI the iron is there, if you ry to fill up furnace it will not be able to accept items to displayed full capacity. So the server knows there is some stuff in there. Also if you move eway from the forge and then return it so your client needs to load it back fully you see the correct contents including smelted iron.
2) Some items that should be and are smeltable in SP, in MP refuse to spelt at all. So far I can confirm that unusable metal is not getting smelted, and all vehicle parts I tried also didn't smelt. Some tools like Lug wrench also staued unsmelted when I expected them to smelt byt I am honestly not 100% positive it shoulf have.
That report done now I am going to use a local copy of mod on local server to see if I can spot an issue.