Is there a way to...

… jump the executing line of a script from one line to another?

example:

if (true) then jump to labelx
code
labelx:
code

Thanks,
Z

SenseTalk does not support GOTO or LABEL commands.
You can call other scripts or place chunks in IF conditionals.

You can also THROW an exception which can be caught by a calling script to indicate an unexpected condition.