修改东京dlc的交通工具容量
装了东京dlc,然后装了可以使东京dlc的交通工具在其他地图使用的mod,然后装了交通工具扩容的mod(就是那个“metro.rar”),然后发现东京的交通工具没有扩容。于是摸索了扩容的方法。打开metro文件夹下的scripts文件夹,使用记事本加上以下这些内容:
巴士 real_bus.script :
在最后加上
////////////////////////////////////////////////////////////
// ==========================================
// tokyoBus01=> Toyoka Juutai
// Original values:
//
// Capacity: 24
// Price 800 (Note this is the base price and will change with the economic growth rate)
// Reliability 0.40
// FuelConsumption 8
// ElectricityConsuption 0
// Attractiveness 0.70
// Speed 65
// ======================================
if($grid.getGridObject("xtokyo-bus01")) {
with ($grid.getGridObject("xtokyo-bus01")) {
.displayName = "Toyoka Juutai";
.capacity = 40;
.$price = 800 * 100;
.$reliability = 0.40;
.$fuelConsumption = 8;
.$electricityConsumption = 0;
.$attractiveness = 0.70;
.$speed = 65;
}
}
////////////////////////////////////////////////////////////
直升飞机real_helicopter.script :
在最后加上
///////////////////////////////////////////////////////////////////
// tokyoHeli01=> Tancho D17
// -------------------------------------------------------------------------------------------
// Original values:
//
// Capacity: 15
// Price 2500 (Note this is the base price and will change with the economic growth rate)
// Reliability 0.90
// FuelConsumption 55
// ElectricityConsuption 0
// Attractiveness 0.60
// Speed 90
// =============================
if($grid.getGridObject("xtokyo-heli01")) {
with ($grid.getGridObject("xtokyo-heli01")) {
.displayName = "Tancho D17";
.capacity = 45;
.$price = 2500 * 100;
.$reliability = 0.90;
.$fuelConsumption = 55;
.$electricityConsumption = 0;
.$attractiveness = 0.60;
.$speed = 90;
}
}
///////////////////////////////////////////////////////////////////
地铁 real_metro.script:
在最后加上
/////////////////////////////////////////////////
// tokyoMetro01=> Stern-Berger Octavio
// Original values:
//
// Capacity: 100(15+14+14+14+14+14+15) (including trailers)
// Price 4300 (Note this is the base price and will change with the economic growth rate)
// Reliability 0.70
// FuelConsumption 0
// ElectricityConsuption 90
// Attractiveness 0.90
// Speed 100
// ======================================
if($grid.getGridObject("xtokyo-metro01")) {
with ($grid.getGridObject("xtokyo-metro01")) {
.displayName = "Stern-Berger Octavio";
.capacity = 25;
.$price = 5000 * 100;
.$reliability = 0.70;
.$fuelConsumption = 0;
.$electricityConsumption = 90;
.$attractiveness = 0.90;
.$speed = 100;
}
}
// Trailer
if($grid.getGridObject("xtokyo-metro01b")) {
with ($grid.getGridObject("xtokyo-metro01b")) {
.capacity = 30;
}
}
/////////////////////////////////////////////////////
单轨(有轨电车) real_tram.script :
在最后加上
//////////////////////////////////////////////
// mono01=> Hana-Bi Challenger
// -------------------------------------------------------------------------------------------
// Original values:
//
// Capacity: 40(10+10+10+10)
// Price 1000 (Note this is the base price and will change with the economic growth rate)
// Reliability 0.60
// FuelConsumption 0
// ElectricityConsuption 13
// Attractiveness 0.95
// Speed 80
// ==================================
if($grid.getGridObject("mono-01")) {
with ($grid.getGridObject("mono-01")) {
.displayName = "Hana-Bi Challenger";
.capacity = 20;
.$price = 1000 * 100;
.$reliability = 0.60;
.$fuelConsumption = 0;
.$electricityConsumption = 13;
.$attractiveness = 0.95;
.$speed = 80;
}
}
// Trailer
if($grid.getGridObject("mono-01b")) {
with ($grid.getGridObject("mono-01b")) {
.capacity = 20;
}
}
///////////////////////////////////////////////////////
// mono02=> Toyoka Cyberia City
// --------------------------------------------------------
// Original values:
//
// Capacity: 40(10+10+10+10)
// Price 1000 (Note this is the base price and will change with the economic growth rate)
// Reliability 0.60
// FuelConsumption 0
// ElectricityConsuption 13
// Attractiveness 0.95
// Speed 80
// ============================
if($grid.getGridObject("mono-02")) {
with ($grid.getGridObject("mono-02")) {
.displayName = "Toyoka Cyberia City";
.capacity = 20;
.$price = 1000 * 100;
.$reliability = 0.60;
.$fuelConsumption = 0;
.$electricityConsumption = 13;
.$attractiveness = 0.95;
.$speed = 80;
}
}
// Trailer
if($grid.getGridObject("mono-02b")) {
with ($grid.getGridObject("mono-02b")) {
.capacity = 20;
}
}
//////////////////////////////////////////////////////
水上巴士real_waterbus.script:
在最后加上
//////////////////////////////////////////
// =============================
// tokyoWaterbus01=> Hana-Bi Dolphin
// Original values:
//
// Capacity: 37
// Price 1400 (Note this is the base price and will change with the economic growth rate)
// Reliability 0.80
// FuelConsumption 15
// ElectricityConsuption 0
// Attractiveness 0.75
// Speed 70
// =====================================
if($grid.getGridObject("xtokyo-waterbus01")) {
with ($grid.getGridObject("xtokyo-waterbus01")) {
.displayName = "Hana-Bi Dolphin";
.capacity = 56;
.$price = 1400 * 100;
.$reliability = 0.80;
.$fuelConsumption = 15;
.$electricityConsumption = 0;
.$attractiveness = 0.75;
.$speed = 70;
}
}
//////////////////////////////////////
// tokyoWaterbus02=> Toyoka Sakura
// Original values:
//
// Capacity: 45
// Price 2000 (Note this is the base price and will change with the economic growth rate)
// Reliability 0.95
// FuelConsumption 30
// ElectricityConsuption 0
// Attractiveness 0.95
// Speed 80
// ==========================================
if($grid.getGridObject("xtokyo-waterbus02")) {
with ($grid.getGridObject("xtokyo-waterbus02")) {
.displayName = "Toyoka Sakura";
.capacity = 80;
.$price = 2000 * 100;
.$reliability = 0.95;
.$fuelConsumption = 30;
.$electricityConsumption = 0;
.$attractiveness = 0.95;
.$speed = 80;
}
}
////////////////////////////////////////////
看看有没有用? 不用着么复杂吧,直接到容量目录列表里改容量大小。 试过了,不行 一楼的你好,请问如何修改东京建筑里住宅和商业的人口呢?我试过了直接到容量目录列表里改容量大小没有用,谢谢。 如果能发个美国修改容量的script就好了~~先等着 請問if($grid.getGridObject("xtokyo-bus01")) {
with ($grid.getGridObject("xtokyo-bus01")) {
是怎看括號內的車輛名稱
我想把其他dlc的車輛也修改 hh29040423 发表于 2012-11-14 20:17 static/image/common/back.gif
請問if($grid.getGridObject("xtokyo-bus01")) {
with ($grid.getGridObject("xtokyo-bus01")) {
是怎 ...
自己再研究了一下 已經明白怎改了^^~
解包dlc的gs->scripts->environment.script->車輛的名稱都在這
pokevb 发表于 2012-1-24 16:42 static/image/common/back.gif
如果能发个美国修改容量的script就好了~~先等着
我也想知道怎么改美国的。。。。
页:
[1]