安装 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(越南语)
Українська(乌克兰语)
报告翻译问题
Maybe add a line in the description for people who've never used mods before. You have to go into content manager, click on mods, and enable the mod, otherwise it won't do anything.
well for me anyway, 2 weeks ago was good then yesterday, not working.
good mod, i use a lot, hope someone finds a fix.
兼容所有DLC和mod。
现在与网络扩展2兼容(谢谢乔内)。
It does work! And you SHOULD ONLY KEEP THIS ON UP UNTIL YOU UNLOCK THE OTHER ROAD OPTIONS NATURALLY. once you've reached each required Milestone for each road option you SHOULD TURN IT OFF then. Also this is more uaeful for planning the layout of your city beforehand. This plus any of the tile unlocking mods should only be used for road nerwork infrastructure planning and must be turned off once you're satisfied with your layout.
You are looking at the "name" for "Road" or "Highway", but some of "Network Extensions 2" don't have those keywords in the name. Instead, they are in the "DisplayName" of the "IDisplayable" interface:
Name = "Zonable Pedestrian Pavement Tiny";
DisplayName = "Zonable Pedestrian Paved Tiny Road";
I suggest looking for the type instead of the name as follows:
// UnlockAllRoadsMod.Unlock
private bool isRoad(ItemClass itemClass)
{
return itemClass.m_service == ItemClass.Service.Road;
}