Hrm, I've been thinking of several methods of massuploading, but I still have to think more about it.
If you want to do it the bad way you can upload them to your folder (let's call it 'Mike') then open 'include/config.inc.php.
If the user is new, there you'll see a line with
code:
"Mike" => array ( [...] )
You have to change that using your preferred code editor adding:
code:
"Mike" => array (
"images" => array(
"image1.jpg",
"image2.jpg",
"image3.jpg",
...
"image196.jpg"
),
[...]
)
That should be adding them properly to KSMAS. If you're using RC3, you should pay attention to the memory limits (if you set any). This method does not override its memory checks.
I'm sorry there's no other way, but it's not thought to be atm.
(btw, be careful with the number of images uploaded, don't let them exceed 1000, or KSMAS could act unexpectedly)