SplitScript reference / timer / skipSplit
timer.skipSplit
Function
timer.skipSplit() -> None
Skips the current split.
This directly advances the timer without recording the current segment as split. Use it only when the autosplitter intentionally controls timer history rather than merely deciding whether its split block fires.
Effects: writes timer state
Runtime behavior: available everywhere; synchronous
Examples
Skip a segment that does not exist in this route
if routeOmitsCurrentSegment {
timer.skipSplit()
}