项目

一般

简介

行为

clearDelayGoto
清理delayGoto或delayCall设定的延时执行

标签:命令定义

格式
命令名
clearDelayGoto

说明


脚本示例:

[@main]
#if
#act
sendMsg 6 <$time>我是@main
delayGoto 2000 @1
;--2秒后跳至@1
[@1]
#if
#act
sendMsg 6 <$time>我是@1
delaygoto 3000 @2
clearDelayGoto
;--跳至@2不会执行,
;因为被clearDelayGoto清除了

[@2]
#if
#act
sendMsg 6 <$time>我是@2


[@main]
#if
#act
sendMsg 6 <$time>我是@main
delayCall 2000 @1
;--2秒后跳至@1
[@1]
#if
#act
sendMsg 6 <$time>我是@1
delayCall 3000 @2
clearDelayGoto
;--跳至@2不会执行,
;因为被clearDelayGoto清除了

[@2]
#if
#act
sendMsg 6 <$time>我是@2

由 machenhe 更新于 超过 2 年 之前 · 1 修订