Code: Select all
sub "_test" ;
msg "Still here!";
"_test"
end 1 == 1, "Bye!", 0;
v14.40.0319 (and before but I don't know when that started): "Bye!" then "Still here!"
could you confirm?
Code: Select all
sub "_test" ;
msg "Still here!";
"_test"
end 1 == 1, "Bye!", 0;
Code: Select all
end condition, [message], [scope=0]
[scope]:
0: [default] end whole script stack [this meaning - entire script resource file]
1: (or any other value) end this script [end the script - sub or label]
That's correct when using '1' since 'Still Here' is in a different script than end.klownboy wrote:In any case, whether a "1" or a "0" is the scope, the message "Still here" still appears so something's wrong.
Code: Select all
"A"
Status 'Start A';
Sub '_B';
Echo 'Back from _B';
Sub '_C';
Echo 'Back from _C - I should not appear.';
"_B"
Status 'Start _B';
End true, 'Ending _B only.', 1;
Echo 'End _B - I should not appear.';
"_C"
Status 'Start _C';
End true, 'Ending all.', 0;
Echo 'End _C - I should not appear.';Yep. I'll look into it later.TheQwerty wrote:Seems Don may have been a little too aggressive in fixing the usage of End within Custom Columns.