From 001a9d1e61b1785998b26bf30b8c5d103a3c2a65 Mon Sep 17 00:00:00 2001 From: Stefan Beller Date: Thu, 7 Oct 2010 23:33:50 +0200 Subject: 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. --- tools/item_show.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tools/item_show.py (limited to 'tools/item_show.py') diff --git a/tools/item_show.py b/tools/item_show.py new file mode 100644 index 00000000..1e14e773 --- /dev/null +++ b/tools/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 -- cgit v1.2.3-60-g2f50