8
A crude script to create more users would be something like
$uidmin = 1313;
$uidmax = 1316;
for ($uid = $uidmin; $uid < $uidmax; $uid++)
{echo "INSERT INTO `xoops_users` VALUES (".$uid.", '', 'JoeUser".$uid."', 'anymail".$uid."@nowhere.com', '', 'blank.gif', 1094155383, '', '', '', 0, '6cc7a5d0', '', '', '', '3516064db5fa1c4c13cd0eee42cce334', 2, 0, 0, 1, '', '0.0', 1094155547, 'nest', 0, 1, 0, '', '', '', 1); ";
}
?>
So that you can set what UIDs are to be generated... if you want to have anything else changing, either incrementally or randomly, it'd be a matter of identifying the right field above and making it another variable with whatever behaviour is necessary. This crude example generated SQL that was as good as my previous method, but I have no idea about how long it'd take to generate lots of entries.