TrainCarts/Signs/Skip
Revision as of 19:38, 14 September 2020 by Bergerhealer Wiki>RyanDo (→Syntax)
Introduction
Skip sign causes the train to skip one or more signs further up ahead based on statements similar to the switcher sign. It can be used to make trains skip a station sign when a certain destination is not set, for example.
Syntax
[train]
skip 2 1
<statement 1>
<statement 2>
- First line: [train] or [cart]. When the sign to be skipped works on a per-cart basis, using [cart] instead of [train] can be better. In general [train] is all you'll need. Like with other signs, redstone power matters. This means the skip sign is only active when powered by redstone. You can use [+train] or [+cart] to always power it.
- Second line: skip, which without further arguments will skip the very next sign the train crosses. When followed by one number, the number sets the number of signs the train has to cross until the sign is skipped. When followed by a second number, the second number sets the number of signs to skip. In the example, a single sign will be skipped after having crossed two signs.
- Third and fourth lines: statements (AND-ed together) for when to activate the skip sign. It is possible to put | in front of the second statement so that the two are OR-ed together instead. Leaving both lines empty makes the skip sign activate all the time.