Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
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;
}