-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
56 lines (37 loc) · 1.52 KB
/
README
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
NetHack-PriceID 0.03
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.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.