-
Notifications
You must be signed in to change notification settings - Fork 5
Hit conditional breakpoint
zero-plusplus edited this page Sep 26, 2021
·
1 revision
This is almost a subset of a Conditional breakpoint that stops the script only when it hits a specified number of hits.
Therefore, it is recommended to learn about Conditional breakpoint first.
The following is equivalent to conditional breakpoints using meta-variables.
= 10 ; same as {hitCount} = 10
== 10 ; same meaning as above
< 10 ; same as {hitCount} < 10
<= 10 ; same as {hitCount} <= 10
> 10 ; same as {hitCount} > 10
>= 10 ; same as {hitCount} >= 10
This is an operator that can only be used at this breakpoint to determine if the number is a multiple of the specified number.
% 10 ; 10, 20, 30... to stop the script.