Runs a same effects through a loop. example will run the effects for value_name = -3, 0, 3, 6, 9 and then terminate
Example: for_loop_effect = {
start = -3 (default 0) start value of loop
end = 10 (default 0) end value of loop
compare = less_than_or_equals (default less_than) comparison type between start and end val
add = 3 (default 1) value to add to current value after each iteration
value = value_name #optional (default 'v') current value of iteration will be stored in this temp variable
break = break_name #optional (default 'break') set this temp variable to non zero to break the loop
#effect 1
#effect 2 ...
}
实战 · 配合 · 坑
实战内容由 AI 生成,并已对照 vanilla 命令词表校验 —— 请当作起点而非权威依据。上方的定义节才是游戏自带文档原文。