diff options
author | Stefan Beller <stefanbeller@googlemail.com> | 2010-10-07 23:33:50 +0200 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2010-11-07 14:50:27 +0100 |
commit | b1e39f8796e69357a396a19a7b1b2bc8be833b0f (patch) | |
tree | 64121349aae1d42742f7dd0d328504e134fe9e2d /item_show.py | |
parent | 351213d8f4f0b922b238689ae6d004d3b797dd61 (diff) | |
download | tools-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.
Diffstat (limited to 'item_show.py')
-rw-r--r-- | item_show.py | 29 |
1 files changed, 29 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 |