summaryrefslogtreecommitdiff
path: root/hercules/convert_server.py
blob: 9eaba1a950d0cd5185a20d23835950e98488160f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/env python
# -*- coding: utf8 -*-
#
# Copyright (C) 2014  Evol Online
# Author: Andrei Karas (4144)

from code.server.consts import *
from code.server.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 *

cleanServerData()
createMainScript()
convertNpcs()
convertMobDb()
convertItemDb()
convertConsts()
convertMobSkillDb()
convertQuestsDb()