diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 8b20433..7a9cabd 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -13,3 +13,6 @@ add_executable(script2txt ${script2txt_src})
file(GLOB mmp_extractor_src "mmp_extractor/*")
add_executable(mmp_extractor ${mmp_extractor_src})
+
+file(GLOB mod_converter_src "mod_converter/*")
+add_executable(mod_converter ${mod_converter_src})
diff --git a/src/mod_converter/mod_converter.cpp b/src/mod_converter/mod_converter.cpp
new file mode 100644
index 0000000..370e5cd
--- /dev/null
+++ b/src/mod_converter/mod_converter.cpp
@@ -0,0 +1,72 @@
+/*
+ * AIM mod_converter
+ * Copyright (C) 2015 lzwdgc
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+#include
+#include
+#include
+#include