Hi all, hopefully someone can help. I have a zscript I’d love to be able to step through one line at a time to see what happens with each line as it finishes, is that possible?
Hi @seanforsyth!
do you have the source code of this ZScript ?
if not, then you no you can’t.
but if yes, then you can do it that way with [note]
[Varset, status, ""]
// the if block to properly set the status variable
[If, condition,
[Varset, status, "On"]
,// else
[Varset, status, "Off"]
]
[Note, [StrMerge, "The variable status is : ", var, "\n"]]
Hope it helps!
Nicolas
Ah, yeah, I meant literally stepping it through it line by line and seeing the results of each line as they get processed. Not to worry! Thanks for the tip!