- Changed format of markers.txt to colon delimited instead of comma (no need to change anything, plugin will read both types and save in the new format) - Added support for warps/homes/spawn from data source (either flatfile or mysql) - Renamed images to be more specific to what they represent (marker = marker.png) for you customizers. - Added fix to mapUpdate to keep marker/player names from conflicting
24 lines
No EOL
523 B
Batchfile
24 lines
No EOL
523 B
Batchfile
@ECHO OFF
|
|
|
|
CD E:\Projects\DynamicMap\branches\fescen9
|
|
|
|
CALL clean.bat
|
|
|
|
MKDIR plugins
|
|
MKDIR plugins\web
|
|
MKDIR plugins\web\tiles
|
|
MKDIR plugins\web\up
|
|
|
|
javac *.java -cp ..\..\..\Minecraft_Mod.jar;..\..\..\minecraft_server.jar
|
|
jar cvf plugins\map.jar *.class
|
|
|
|
|
|
COPY colors.txt .\plugins
|
|
COPY readme.txt .\plugins
|
|
COPY .\web\*.* .\plugins\web
|
|
COPY .\web\tiles\*.* .\plugins\web\tiles
|
|
COPY .\web\up\*.* .\plugins\web\up
|
|
|
|
CALL "C:\Program Files\WinRAR\Rar.exe" a -m5 -ed -r DynamicMap.rar .\plugins\*.*
|
|
|
|
PAUSE |