summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Beller <stefanbeller@googlemail.com>2010-10-07 23:33:50 +0200
committerStefan Beller <stefanbeller@googlemail.com>2010-11-07 14:50:27 +0100
commitb1e39f8796e69357a396a19a7b1b2bc8be833b0f (patch)
tree64121349aae1d42742f7dd0d328504e134fe9e2d
parent351213d8f4f0b922b238689ae6d004d3b797dd61 (diff)
downloadtools-b1e39f8796e69357a396a19a7b1b2bc8be833b0f.tar.gz
tools-b1e39f8796e69357a396a19a7b1b2bc8be833b0f.tar.bz2
tools-b1e39f8796e69357a396a19a7b1b2bc8be833b0f.tar.xz
tools-b1e39f8796e69357a396a19a7b1b2bc8be833b0f.zip
adding two useful scripts
1. shows monsterdrops sorted by npc-selling prize 2. shows all magic spells in the magic_template.conf in conf folder.
-rw-r--r--item_show.py29
-rw-r--r--showmagicspells.py64
2 files changed, 93 insertions, 0 deletions
diff --git a/item_show.py b/item_show.py
new file mode 100644
index 0000000..1e14e77
--- /dev/null
+++ b/item_show.py
@@ -0,0 +1,29 @@
+#!/usr/bin/python
+#has to be executed in place, this folder
+
+
+def make_items():
+ items_file=open("../db/item_db.txt","r")
+ lines=items_file.readlines()
+ items_file.close();
+
+ items=[]
+ for line in lines:
+ array=line.split(",")
+ if len(array)>6 and not line.startswith("#") and not line.startswith("//"):
+ id=array[0]
+ name=array[1]
+ mbonus=array[10]
+ try:
+ int(mbonus)
+ items+=[(int(mbonus),name)]
+ except:
+ print line
+ return items;
+
+global_items=[]
+global_items=make_items();
+
+global_items.sort()
+for item in global_items:
+ print item
diff --git a/showmagicspells.py b/showmagicspells.py
new file mode 100644
index 0000000..6909a72
--- /dev/null
+++ b/showmagicspells.py
@@ -0,0 +1,64 @@
+#!/usr/bin/env python
+#
+# showmagicspells.py
+#
+# Copyright 2010 Stefan Beller
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+# MA 02110-1301, USA.
+
+def handle_lines(lines):
+ def getInfo(line, info):
+ sp = line.split(" ")
+ if info in sp:
+ pos = sp.index(info)
+ return sp[pos+2].strip()
+ return ""
+
+ firstline = lines[0].split(" ")
+ pos=firstline.index("SPELL")
+ name= firstline[pos+1]
+ level = getInfo(lines[1],"level")
+ school = getInfo(lines[2],"school")
+
+ #print name,level,school
+ if not school in spells:
+ spells[school]=[]
+ spells[school]+=[(name,level,school)]
+
+def main():
+ fname = "../conf/magic.conf.template"
+ f=open(fname, "r");
+ lines=f.readlines();
+ f.close();
+
+ while lines :
+ line=lines[0]
+ if line.startswith("SPELL"):
+ handle_lines(lines);
+ if line.startswith("# LOCAL SPELL"):
+ handle_lines(lines);
+ if line.startswith("# SPELL"):
+ handle_lines(lines);
+ del lines[0]
+ return 0
+
+spells={}
+main()
+for x in spells:
+ print x
+ for y in spells[x]:
+ print "\t",y[1],y[0];
+