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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# -*- coding: utf8 -*-
#
# Copyright (C) 2014 Evol Online
# Author: Andrei Karas (4144)
import re
from code.fileutils import *
from code.stringutils import *
def convertMobSkillDb():
srcFile = "oldserverdata/world/map/db/mob_skill_db.txt"
dstFile = "newserverdata/db/re/mob_skill_db.txt"
fieldsSplit = re.compile(",")
notintown = re.compile("notintown")
notintownSub = re.compile("notintown,0")
with open(srcFile, "r") as r:
with open(dstFile, "w") as w:
tpl = readFile("templates/mob_skill_db.tpl")
w.write(tpl)
for line in r:
if notintown.search(line):
if line[0:2] == "//":
line = ''
line = notintownSub.sub("myhpltmaxrate,20",line)
if len(line) < 2 or line[0:2] == "//":
w.write(line)
continue
rows = fieldsSplit.split(line)
if len(rows) < 10:
w.write(line)
continue
for f in xrange(0, len(rows)):
rows[f] = rows[f].strip()
w.write("{0},{1},{2},{3},{4},{5},{6},"
"{7},{8},{9},{10},{11},{12},{13},"
"{14},,,,\n".format(
rows[0],
rows[1],
rows[2],
rows[3],
rows[4],
rows[5],
rows[6],
rows[7],
rows[8],
rows[9],
rows[10],
rows[11],
rows[12],
rows[13],
rows[14]
))
|