Bp
Sets a break point
inside the script.
Parameters
Remarks
- BP can
be used for debugging purpose in the Developer Edition. When execution
of the script reaches BP, it switches to single step mode.
- This command
is active only if executed under the Developer
Edition. Under the Standard
Edition XIVR engine will simply ignore the Bp command.
Example
$A = 0
while $A < 10
speak $A
BP
$A = $A + 1
endwhile