The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
NetHack-PriceID 0.04

NetHack, the game of princes, has a large item-identification subgame. The
quickest way to gauge how useful an item is is to "price identify" it. This
involves trying to buy or sell the item in a store, which tells you its price.
Item types (scrolls, potions, wands, etc) are each divided into about five
price groups -- price IDing cuts down a large number of possible identities of
an item.

The calculations for price IDing aren't that difficult, but making sure to get
all the edge cases (such as trying to identify items while the shopkeeper is
attacking you -- and charging you more money) can be twiddly.

This module also comes with a priceid script.

MAJOR CHANGES
    0.03: add tools and armor
    0.02: ship a script
    0.01: first version

INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc
command.

    perldoc NetHack::PriceID

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/NetHack-PriceID

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=NetHack-PriceID

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/NetHack-PriceID

    CPAN Ratings:
        http://cpanratings.perl.org/d/NetHack-PriceID

COPYRIGHT AND LICENSE

Copyright (C) 2007 Shawn M Moore

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.