diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-02 12:37:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-02 12:38:12 +0300 |
commit | 58d6b3709c95a0ea1b3f97c99a29f7b529e647dc (patch) | |
tree | efc1f414a1aa0e0593b5d57b2993c1b13c09eb79 /hercules/convert_server.py | |
parent | 73238e37ab83c0171ffe4f5b7b0a014950c15562 (diff) | |
download | evol-tools-58d6b3709c95a0ea1b3f97c99a29f7b529e647dc.tar.gz evol-tools-58d6b3709c95a0ea1b3f97c99a29f7b529e647dc.tar.bz2 evol-tools-58d6b3709c95a0ea1b3f97c99a29f7b529e647dc.tar.xz evol-tools-58d6b3709c95a0ea1b3f97c99a29f7b529e647dc.zip |
hercules: add item_db coversion.
Diffstat (limited to 'hercules/convert_server.py')
-rwxr-xr-x | hercules/convert_server.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hercules/convert_server.py b/hercules/convert_server.py index 7ad1fe5..9968218 100755 --- a/hercules/convert_server.py +++ b/hercules/convert_server.py @@ -4,11 +4,13 @@ # Copyright (C) 2014 Evol Online # Author: Andrei Karas (4144) -from code.server.npcs import * +from code.server.itemdb import * from code.server.mobdb import * +from code.server.npcs import * from code.server.utils import * cleanServerData() createMainScript() -convertNpcs(); -convertMobDb(); +convertNpcs() +convertMobDb() +convertItemDb() |