IncrKillCount

Has one parameter.

Description:

Every Procedure starts with a Kill Count of 1000, allowing up to 1000 operations before the Procedure will exit with a Too many steps executed error. The purpose of this system is to prevent runaway MOX Procedures from hurting server's performance. If the default of 1000 is not a safe enough value for your Procedure you can use IncrKillCount to increase the current number by a reasonable amount that will ensure your Procedure finishes but will kill a runaway should one occur. This is only necessary if designing Procudures with loops, which is typically not necessary and the design of MOX tries to descourage them.

Example:

IncrKillCount 10000