diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-29 12:02:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-29 12:02:21 +0300 |
commit | 7ee8060460c63f0f4aaae338c99686f38edff2a0 (patch) | |
tree | 06b8a5319e986e4015e9cfc38e0091ae97585ca3 /hercules/code/server/evol/main.py | |
parent | fd60b7426c0191d7275272aec604d272fbc3c420 (diff) | |
download | tools-7ee8060460c63f0f4aaae338c99686f38edff2a0.tar.gz tools-7ee8060460c63f0f4aaae338c99686f38edff2a0.tar.bz2 tools-7ee8060460c63f0f4aaae338c99686f38edff2a0.tar.xz tools-7ee8060460c63f0f4aaae338c99686f38edff2a0.zip |
hercules: start adding support for conversion from tmwa data.
Diffstat (limited to 'hercules/code/server/evol/main.py')
-rw-r--r-- | hercules/code/server/evol/main.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/hercules/code/server/evol/main.py b/hercules/code/server/evol/main.py new file mode 100644 index 0000000..8919c76 --- /dev/null +++ b/hercules/code/server/evol/main.py @@ -0,0 +1,24 @@ +#! /usr/bin/env python +# -*- coding: utf8 -*- +# +# Copyright (C) 2014 Evol Online +# Author: Andrei Karas (4144) + +from code.server.consts import * +from code.server.evol.itemdb import * +from code.server.mobdb import * +from code.server.mobskilldb import * +from code.server.npcs import * +from code.server.utils import * +from code.server.questsdb import * +from code.serverutils import * + +def serverEvolMain(): + cleanServerData() + createMainScript() + items = convertItemDb() + convertNpcs(items) + convertMobDb() + quests = convertQuestsDb() + convertConsts(quests) + convertMobSkillDb() |