This is a simple modification to boost the order numbers.

Use it at your own risk.

Find in catalog/checkout_process.php:

$insert_id = tep_db_insert_id();

add below:

tep_db_query("alter table " . TABLE_ORDERS. " auto_increment = " . ($insert_id + rand (2 ,5 )) );

The next order will not be exactly the next number but a number between 2 and 5 greater, simple to modify to obtain more or less boost.

More...