Sorry, my previous post is not entirely correct.
The number of saddle searches is controlled by how many MPI processes you assign, divided by processes_per_saddle_search. But this is only relevant if you want each saddle search to be MPI parallel, and normally we don't need or want that for force fields.
Instead, what you want is to run 6 (see above) MPI processes, i.e. mpiexec -n 6 but ensure that the job has access to all the cores on the machine, so each saddle search can thread over the cores. This is a matter of reserving the relevant number of cores in the job scheduler, if you have one, and you might need to set the environment variable OMP_NUM_THREADS suitably for this, you can experiment (and let me know how it works out, for reference).