<<返回上一页
石器脚本语言NG指令:return,多层套用演示 return return指令的用途:利用return实现多层套用的脚本写法。 例子:'常规拆分写法 let @t,=,0 cls chname 宠物1,test delay 1 check 宠物1,名称,!=,test,-1 call 测试 end label 测试 label 测试1 call 测试check if @t,<,10,测试1 print 本行应该只出现一次 chname 宠物1, return label 测试check let @t,+,1 check 宠物1,名称,!=,test,+2 return return '多层套用写法 let @t,=,0 cls chname 宠物1,test delay 1 check 宠物1,名称,!=,test,-1 call 测试 end label 测试 label 测试1 call 测试check if @t,<,10,测试1 print 本行应该只出现一次 chname 宠物1, return label 测试check let @t,+,1 check 宠物1,名称,=,test,return return 输出结果: 本行应该只出现一次 多层套用适合书写更复杂的脚本,不过也更容易出错,因此并不是很建议。 演示视频: