75 lines
1.4 KiB
Plaintext
75 lines
1.4 KiB
Plaintext
title: Start
|
|
tags:
|
|
colorID: 8
|
|
position: 205,-53
|
|
---
|
|
//me: 这是一个自动提醒<br>你还没有清除所有待办,请ctrlF“【【”<br>在清除后记得去掉这句话(还有底下的wait #line:09bd52f
|
|
<<wait 1>>
|
|
<<jump VarsInit>>
|
|
===
|
|
|
|
|
|
|
|
|
|
title: VarsInit
|
|
tags:
|
|
colorID: 4
|
|
position: 205,199
|
|
---
|
|
//在这里决定这次诊疗的目标是什么,以及目标判断相关的数值
|
|
|
|
//【流程相关】
|
|
//gameStage
|
|
<<declare $gameStage=1>>
|
|
|
|
//每个模块的首次检查
|
|
<<declare $emoChecked=false>>
|
|
<<declare $memoryChecked=false>>
|
|
<<declare $logicChecked=false>>
|
|
<<declare $eyeChecked=false>>
|
|
<<declare $speakerChecked=false>>
|
|
///【流程逻辑】
|
|
|
|
|
|
//【功能相关】
|
|
//clueboard相关
|
|
<<declare $StartNode="">>
|
|
<<declare $EndNode="">>
|
|
|
|
//插线
|
|
<<declare $currentSocket="">>
|
|
<<declare $PlugCount=0>>
|
|
<<declare $PlugAll=false>>
|
|
|
|
<<jump Center>>
|
|
===
|
|
|
|
|
|
|
|
|
|
title: Center
|
|
description: 脚本跳转中心,GameStage在此处处理,理论上不在其他地方读取GameStage
|
|
position: 205,446
|
|
colorID: 1
|
|
---
|
|
//每次进入维修界面就自动保存
|
|
<<auto_save>>
|
|
|
|
//【【设置gameStage,尤其注意nextyarn的条件】】
|
|
<<if $gameStage == 1>>
|
|
<<jump Stage1>>
|
|
<<elseif $gameStage == 2>>
|
|
<<jump Stage2>>
|
|
<<elseif $gameStage == 3>>
|
|
<<jump Stage3>>
|
|
<<elseif $gameStage == 4>>
|
|
<<jump Stage4>>
|
|
<<elseif $gameStage > 4>>
|
|
<<NextYarn>>
|
|
//结束,进入下一个Yarn
|
|
<<endif>>
|
|
===
|
|
|
|
|
|
|