summaryrefslogtreecommitdiff
path: root/tools/tmwcon/build.xml
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2012-07-11 14:16:02 -0700
committerBen Longbons <b.r.longbons@gmail.com>2012-07-19 11:04:33 -0700
commita08660ca24cc18778ad929eb5a79453ba37d232e (patch)
tree3a89c50ddb54959b661e70802eb71ca77bce7216 /tools/tmwcon/build.xml
parentfb3b066e0b99900b0dff319ef9ca8776d9d26a64 (diff)
downloadserverdata-a08660ca24cc18778ad929eb5a79453ba37d232e.tar.gz
serverdata-a08660ca24cc18778ad929eb5a79453ba37d232e.tar.bz2
serverdata-a08660ca24cc18778ad929eb5a79453ba37d232e.tar.xz
serverdata-a08660ca24cc18778ad929eb5a79453ba37d232e.zip
Add a tmx-to-wlk converter that handles CSV (in Python), and run it.
Some of the _mobs files changed due to bugs in the maps, which I fixed. Remove the old Java version.
Diffstat (limited to 'tools/tmwcon/build.xml')
-rwxr-xr-xtools/tmwcon/build.xml30
1 files changed, 0 insertions, 30 deletions
diff --git a/tools/tmwcon/build.xml b/tools/tmwcon/build.xml
deleted file mode 100755
index 26497f8e..00000000
--- a/tools/tmwcon/build.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<project name="TMWServ to eAthena Converter" default="dist">
- <description>
- A tool to convert map data from TMWServ format to eAthena format
- </description>
- <!-- set global properties for this build -->
-
- <target name="init">
- <!-- Create the time stamp -->
- <tstamp/>
- <!-- Create the build directory structure used by compile -->
- <mkdir dir="build"/>
- </target>
-
- <target name="compile" depends="init" description="Compile the source">
- <javac source="1.5" target="1.5" srcdir="src" destdir="build"
- deprecation="on" classpath="tiled-core.jar;tmw.jar"/>
- </target>
-
- <target name="dist" depends="compile" description="Generate the distribution">
- <jar
- jarfile="converter.jar"
- manifest="MANIFEST.MF"
- basedir="build"
- />
- </target>
-
- <target name="clean" description="Clean up the build directory" >
- <delete dir="build"/>
- </target>
-</project>