Continue (Effect) — Skript

Addon: Skript · Category: Effect · Since: 2.2-dev37, 2.7 (while loops), 2.8.0 (outer loops)

Syntax

continue [this loop|[the] [current] loop]

Description

Moves the loop to the next iteration. You may also continue an outer loop from an inner one. The loops are labelled from 1 until the current loop, starting with the outermost one.

Examples

# Broadcast online moderators
loop all players:
	if loop-value does not have permission "moderator":
		continue # filter out non moderators
	broadcast "%loop-player% is a moderator!" # Only moderators get broadcast
# Game starting counter
set {_counter} to 11
while {_counter} > 0:
	remove 1 from {_counter}
	wait a second
	if {_counter} != 1, 2, 3, 5 or 10:
		continue # only print when counter is 1, 2, 3, 5 or 10
	broadcast "Game starting in %{_counter}% second(s)"

View source