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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#!/usr/bin/env python3
import copy
TYPE_NUL=0
TYPE_WPN=1
TYPE_BOW=2
TYPE_SHD=3
class Item:
def __init__(self, xid, typ=TYPE_NUL):
self.id=xid
self.lvl=0
self.type=typ
def main(a, typ=TYPE_NUL):
global swords, bows, shields, gid, rid, tip, ctx, mem
gid="0"
rid=0
tip=TYPE_NUL
ctx=Item(0, typ)
for l in a:
if "<item id=" in l:
if ctx.id > 0:
mem.append(copy.copy(ctx))
gid=l.replace('\t', '').replace(' ','').replace('<itemid=', '').replace('"', '').replace("'", "")
rid=0
if "-" in gid:
gid="0"
continue
try:
rid=int(gid)
except:
print("[CRITICAL] Invalid item ID format: " + l)
exit(1)
ctx=Item(rid, typ)
if "\tlevel=" in l or " level=" in l:
gid=l.replace('\t', '').replace(' ','').replace('level=', '').replace('"', '').replace("'", "")
try:
ctx.lvl=int(gid)
except:
print("[CRITICAL] Invalid item level format: " + l)
ctx.lvl=0
if "\tattack-range=" in l or " attack-range=" in l:
tip=l.replace('\t', '').replace(' ','').replace('attack-range=', '').replace('"', '').replace("'", "").replace(">", "")
try:
if int(tip) > 2:
ctx.type=TYPE_BOW
else:
ctx.type=TYPE_WPN
except:
print("[CRITICAL] Invalid item range format: " + l)
ctx.type=TYPE_NUL
ctx.lvl=0+rid
return
swords=[]
bows=[]
shields=[]
mem=[]
f1=open("../../client-data/items/equip-1hand.xml", "r")
main(f1)
f1.close()
f2=open("../../client-data/items/equip-2hand.xml", "r")
main(f2)
f2.close()
f3=open("../../client-data/items/equip-shield.xml", "r")
main(f3, TYPE_SHD)
f3.close()
mem=sorted(mem, key=lambda xcv: xcv.lvl, reverse=True)
for r in mem:
if r.type == TYPE_SHD:
shields.append(r.id)
elif r.type == TYPE_WPN:
swords.append(r.id)
elif r.type == TYPE_BOW:
bows.append(r.id)
else:
print("Wrong type for item %d" % r.id)
#shields=sorted(shields, reverse=True)
#bows=sorted(bows, reverse=True)
#swords=sorted(swords, reverse=True)
b=open("weapons.tmp", "w")
b.write('<?xml version="1.0" encoding="utf-8"?>\n\
<!-- Author: 4144, Jesusalva\n\
Copyright (C) 2015 Evol Online\n\
Copyright (C) 2019-2021 The Mana World\n -->\n\
\n\
<weapons>\n')
b.write(' <swords>\n')
for i in swords:
b.write(' <item id="%d"/>\n' % i)
b.write(' </swords>\n <bows>\n')
for i in bows:
b.write(' <item id="%d"/>\n' % i)
b.write(' </bows>\n <shields>\n')
for i in shields:
b.write(' <item id="%d"/>\n' % i)
b.write(' </shields>\n</weapons>')
b.close()
|