安装 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(越南语)
Українська(乌克兰语)
报告翻译问题
Do NOT install this mod.
It's not worth it.
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2756689895
To our disappointment, the map is completely blank. It "discovers" the area the expansion should be, but it just shows the vanilla map still with no buildings. Just forest.
corrected the file. It must be placed at: C: \ Program Files (x86) \ Steam \ steamapps \ workshop \ content \ 108600 \ 2199111256 \ mods \ west_point_expansion_addon_lootmap \ media \ lua \ server \ Items
table.insert(ProceduralDistributions.list.MagazineRackMaps.items, "Base.west_point_expansion_lootmap_saltridge");
table.insert(ProceduralDistributions.list.MagazineRackMaps.items, 10);
I get that this inserts the item in the magazine rack containers, but what is the "10" at the end of the script. Is that the percentage chance of it appearing in that container? thanks (cant find any of this info on the net, hence, asking here)
...\workshop\content\108600\2199111256\mods\west_point_expansion_addon_lootmap\media\lua\server\Items\ "west_point_expansion_lootmap_saltridge.lua"
and replace it with:
local function preDistributionMerge()
table.insert(ProceduralDistributions.list.MagazineRackMaps.items, "Base.west_point_expansion_lootmap_saltridge");
table.insert(ProceduralDistributions.list.MagazineRackMaps.items, 10);
table.insert(ProceduralDistributions.list.MagazineRackMaps.items, "Base.west_point_expansion_lootmap_saltridge");
table.insert(ProceduralDistributions.list.MagazineRackMaps.items, 10);
end
Events.OnPreDistributionMerge.Add(preDistributionMerge);
function: west_point_expansion_lootmap_saltridge.lua -- file: west_point_expansion_lootmap_saltridge.lua line # 3
仅与build 41+兼容
v1.1
由Commander(ww2commander)创建
车间编号:2199111256
模组ID:WestPointExpansionAddonLootMap
I'll be sure to look for this later.