Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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;
}