Got a question though - how can I get rid of the cmd window that stays open after I launch the game? Takes up my limited taskbar space for no reason. Closing it closes the game too. Tried some batch file trickery but the best I got was a "title-less", blank, unresponsive java console.
Also I threw together a little batch script that automatically stitches the map from your most recent session. Just put it together with the Stitch.class inside your "map" folder and run it. Get rid of the pause command at the end if you want to.
- Code: Select all
@echo off
for /F "delims=" %%i in ('dir /b /ad-h /t:c /o-d') do (
echo Stitching %%i . . .
java -cp . Stitch "%%i" "%%i.png"
goto :done
)
echo Something went wrong!
:done
echo Done!
pause