if (GetValue("ASSEMBLY_PREFIX")== "SC-"&& getat(GetValue("MAINPART.PROFILE"),"0") == "D")
then
Output()
else
StepOver()
endif
以上原规则 想修改下条件 希望高级一些 能识别包含所有SC的 比如2SC- SC2- S2C- 等等 这样的
以下是笨办法
if ((GetValue("ASSEMBLY_PREFIX")== "SC-" || GetValue("ASSEMBLY_PREFIX")== "2SC-") && getat(GetValue("MAINPART.PROFILE"),"0") == "D")
then
Output()
else
StepOver()
endif
then
Output()
else
StepOver()
endif
以上原规则 想修改下条件 希望高级一些 能识别包含所有SC的 比如2SC- SC2- S2C- 等等 这样的
以下是笨办法
if ((GetValue("ASSEMBLY_PREFIX")== "SC-" || GetValue("ASSEMBLY_PREFIX")== "2SC-") && getat(GetValue("MAINPART.PROFILE"),"0") == "D")
then
Output()
else
StepOver()
endif