summaryrefslogtreecommitdiff
path: root/hercules/code/server/questsdb.py
blob: 880a7f9390789a1a740b9ce181e99a695279d1e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- coding: utf8 -*-
#
# Copyright (C) 2014  Evol Online
# Author: Andrei Karas (4144)

from code.fileutils import readFile

def convertQuestsDb():
    srcFile = "oldserverdata/db/questvars.txt"
    dstFile = "newserverdata/db/quest_db.txt"
    quests = dict()
    with open(srcFile, "r") as r:
        with open(dstFile, "w") as w:
            tpl = readFile("templates/quest_db.tpl")
            w.write(tpl)
            cnt = 0
            for line in r:
                if len(line) < 2 or line[0:2] == "//":
                    continue

                idx = line.find("// ")
                if idx < 3:
                    continue
                line = line[idx + 3:]
                idx = line.find(" ")
                if idx < 3:
                    continue
                line = line[:idx]

                w.write("{0},0,0,0,0,0,0,0,\"{1}\"\n".format(cnt, line))
                quests[line] = cnt
                cnt = cnt + 1
    return quests