Difference between revisions of "TrainCarts/Signs/Spawner/zh-cn"
(Created page with "== 自动生成 ==") |
(Created page with "可以设置生成列车的间隔:") |
||
Line 60: | Line 60: | ||
== 自动生成 == | == 自动生成 == | ||
− | + | 可以设置生成列车的间隔: | |
− | |||
− | |||
{{sign|[+train]|spawn 1:20 0.5|mmm}} | {{sign|[+train]|spawn 1:20 0.5|mmm}} |
Revision as of 13:46, 17 September 2024
介绍
列车生成器会生成完整的列车。列车会在控制牌上方铁轨的文本一侧生成。当激活生成牌时(之前处于未激活状态),生成牌会检测铁轨上是否有其他列车,如果轨道无占用,就会生成一辆列车。
语法
第一行
[train],可以指定列车的生成方向。例如:[train:left] 或 [train:right]。如果没有指定,则会根据红石信号的输入方向来作为生成方向。关于自动生成器,建议使用 [+train] 来让生成器始终运作。
第二行
spawn,后可添加前进动力来生成列车。
第三行和第四行
要生成的矿车类型,需使用以下的字符。生成的列车会按照生成器上设置的顺序来生成相同类型的列车。若要一次性生成多辆矿车,比如 30 辆,那么请在字符前面添加要生成的列车数量。比如,30s60m 会生成一列由 30 辆储存矿车和 60 辆普通矿车组成的列车。
文本 | Minecart 类型 |
---|---|
m | 普通矿车 |
p | 动力矿车 |
s | 运输矿车 |
t | TNT 矿车 |
h | 漏斗矿车 |
e | Minecart with Spawner |
也可以生成你之前制作保存的列车,只需在第三行填写已保存列车的名称就行了。
自动生成
可以设置生成列车的间隔:
Will spawn 3 minecarts every 1 minute and 20 seconds at a velocity of 0.5 blocks/tick. The interval time has to be set after spawn and before the launching velocity. The automatic spawner will load a 7x7 chunk area around the sign, and spawn a minecart. Try not to set the interval too low as that may cause issues when the chunks around the signs unload a lot.
Spawn Limit
To limit how many trains the spawn sign can spawn, you can set a spawn limit for a saved train. To set one, first save the train to spawn with the spawn sign (/train save name
). Then, use the /savedtrain name spawnlimit <limit>
command to set a limit. This is useful when automatically populating a train network with trains.
This can be combined with enabling destroyAllOnShutdown
in config.yml so that on server restart everything starts with a clean slate.
Failure Colors
When the spawn sign fails to spawn, it shows dust particles at the sign to explain why.
Color | Reason |
---|---|
Blue | Not enough rails to spawn on |
Purple | Rails are occupied by another train |
Red | Spawned train has a spawn limit that is exceeded (SavedTrain spawn limit) |
Orange | Maximum number of carts per world reached (config.yml maxCartsPerWorld setting) |
Maroon | Spawned train is too long (config.yml maxCartsPerTrain setting) |
Yellow | Spawn sign cooldown prevents spawning (config.yml spawnSignCooldown setting) |