you dont happen to mean this page:
http://www.highend3d.com/boards/index.php?...ic=149586&st=30
I mean i used to use the batch whan i freelanced. Offcourse would be better on aa if i woulcd calculate the overlap. Ill include the windows batch file that can help you on this for a convinence here. Be sure to chek the note after!
CODE
@echo off
:: example by Janne Ojala 2003
:: make variables for for this batch only
setlocal
:: calculate the tile size and set the variables named ones
set /a x=%1/%3
set /a y=%2/%4
set xsize=%1
set ysize=%2
set xstep=%3
set ystep=%4
set name=%5
::shift 5 times to make room for additional switces at the end
shift
shift
shift
shift
shift
:: Do insane nestled loop
:: some of the foor are ther just to evaluate a set /a
:: command, wich otherwise wont evaluate inside for!
:: broken down the for loop to be nicer for edits
for /L %%i in (%x%,%x%,%xsize%) do ^
for /F %%a IN ('set /a %%i-1') do ^
for /F %%j IN ('set /a %%i-%x%') do ^
for /L %%k in (%y%,%y%,%ysize%) do ^
for /F %%l IN ('set /a %%k-%y%') do ^
for /F %%b IN ('set /a %%k-1') do ^
for /F %%n IN ('set /a ^(%%k/%y%^)+^(%%i/%x% -1^)*%xstep%')do ^
render -x %xsize% -y %ysize% -xl %%j -xr %%a -yl %%l -yr %%b -im %name%%%n ^
%1 %2 %3 %4 %5 %6 %7 %8 %9
endlocal
IPORTANT NOTE: its abit sensitive so if you copypaste it make sure the ^ marksa re followed by line change IMMIDEATLEY and thet theres no space after them. The forum has atendency to add them.
its a bit of a spagetti soulution i made, you may need to update the actual flags to work on newer mayas. as this batch is form 2003.