what is the exact problem? Can you not add additional fields after a while? Or can you add unlimited rules, but only the first 190 are saved?
I haven’t coded in any limitations what soever. The reason that it’s not working might be because you are trying to submit too many input fields. PHP limits the number of input fields that can be posted with.
In php.ini search for the line max_input_vars
and change it to
max_input_vars = 5000
If you have no access to your php.ini file, please contact your host and ask them to increase the value. Hopefully that will do the trick.