I played a bunch with Zangband about a year ago. Came close to winning
a few times, but alas, the usual carelessness wiped my little men out.
Anyway, I picked up 2.3.5 a few days ago. Kudos to the development
team -- it looks really good. I'm playing a golem monk, which, so far,
strikes me as obscenely powerful, but I'm only around level 20.
I have a question, though: I see some new objects, like 'Stone Statue of
a Red Dragon Bat' and the like. Are these usable? How?
John
I'm also wondering about the corpses you find. A hidden tucked away line in
the help file says they used to be resurected ? Is this a feature that's
going to be added again sometime ?
--
J Scott(ie) Somers
jsso...@home.com
"Escapism ? Sure, science fiction is escapsim -- into reality !"
- Isaac Asimov
John Fisher <john...@uclink4.berkeley.edu> wrote in message
news:38E7D70E...@uclink4.berkeley.edu...
> Hey all,
>
> I played a bunch with Zangband about a year ago. Came close to winning
> a few times, but alas, the usual carelessness wiped my little men out.
> Anyway, I picked up 2.3.35 a few days ago. Kudos to the development
>Yeah, I haven't been able to figure that out either. (and a Father of the
>Dragons statue (or something like that) sitting in my house :-)
>
>I'm also wondering about the corpses you find. A hidden tucked away line in
>the help file says they used to be resurected ? Is this a feature that's
>going to be added again sometime ?
Statues are "junk" items, really. Some can be sold for a decent
amount, but I think that's mostly based off of what they're made of.
Corpses have no use currently. I think the dev team hinted at a
possible use in developement when they introduced corpses as items in
the game....
--
Change "Tyger" to "half" to email me.
=^..^=
"If you should die before me, ask if you could bring a friend."
- Stone Temple Pilots
A place between time and space, everywhere and nowhere
http://www.fortunecity.com/roswell/psychic/876/den.html
Friendly staff, beautiful gaming/chat environment. Check it out!
>On Mon, 03 Apr 2000 00:24:41 GMT, "J Scott Somers" <jsso...@Home.com>
>wrote:
>
>>Yeah, I haven't been able to figure that out either. (and a Father of the
>>Dragons statue (or something like that) sitting in my house :-)
>>
>>I'm also wondering about the corpses you find. A hidden tucked away line in
>>the help file says they used to be resurected ? Is this a feature that's
>>going to be added again sometime ?
>
>Statues are "junk" items, really. Some can be sold for a decent
>amount, but I think that's mostly based off of what they're made of.
>Corpses have no use currently. I think the dev team hinted at a
>possible use in developement when they introduced corpses as items in
>the game....
Necromancy uses corpses.. but not in the current version.. IIRC
Statues are collectibles not junk :) I have my own collection at a
town house.. it's rather cool.. I have a statue of Smeagol at home..
Figurines are the usefull ones.. throw them and you'll see..
/Marten
Just a thouht.
Corey
p.s. In [Z] since monster skeletons are created automatically, shouldn't all
the dwarf skeleton and elf skeleton junk items be eliminated and maybe
replaced with food items that you can buy in the general store (but no one
does since rations are better). This would give those items a point.
This sounds an awful lot like the autosquelching feature I implemented
for ZAngband. Check out the description at
http://www.cs.berkeley.edu/~davidb/angband/
If you have the patch utility (or can run a DOS executable) you
can check out this feature for yourself.
Regards,
Dave Blackston
It is, but this is a bit more dynamic since it allows *precisely* which
items should be squelched.
Corey
--
Z/Kn Tk/D H+ D+ c f- PV+++ s TT- d P++ M+
!C S- I- So- B ac GHB- SQ RQ+ V F:Oang Combat
I think my feature does this as well, in that it allows the user
to specify any tval/sval combination as squelched. It's also
dynamic in the sense that these squelch booleans can be toggled
at any time.
Can you provide a more specific example of what you want that
my code doesn't do? I'd be happy to add it to the code if
feasible.
Regards,
Dave
I'm fairly certain that my code does everything you request here. The
only difference is that the booleans are stored in the save file, not
in an external text file.
My code will allow you to squelch any specific item you want and you
can change these squelch booleans at any time. For example, I play golem
warriors and always strt by allowing the generation of Rods of Trap
Location. Once I have 4 of them, I squelch the rest so that I never see
them again. When my character dies (as it always does) I simply reset the
squelch boolean for these Rods so that they can be generated again.
I personally always squelch broken daggers and broken swords so these
are never generated. I also squelch all skeletons, corpses, figurines,
torches, lanterns, spikes, and statues and never see these. It's really
a time saver. ;-)
Regards,
Dave
>you know what would be an awesome feature? A user defined text file that
>lists the number of all the files that person deems as junk. Since some
You probably meant 'all the objects', no?
It's nothing new - I suggested that in private mail with Ed Cogburn.
What is more, using regexps would allow to tailor your preferences
exactly as you want.
GSN
>Location. Once I have 4 of them, I squelch the rest so that I never see
>them again. When my character dies (as it always does) I simply reset the
>squelch boolean for these Rods so that they can be generated again.
Shouldn't that be reset automatically?
A text file which is loaded on-demand could help you standardise what
you want to be squelched, for a particular char combo and early, mid
and endgame.
>I personally always squelch broken daggers and broken swords so these
>are never generated. I also squelch all skeletons, corpses, figurines,
>torches, lanterns, spikes, and statues and never see these. It's really
>a time saver. ;-)
Artifact broken daggers and swords may be worth a lot and give you
more blows (in Z 2.3.5 especially).
GSN
As a general rule, no. Since the vast majority of items in ZAngband
are useless, it doesn't make sense to reset all of the squelch values
on death. It's much easier for the user to unsquelch those items
he finds useful in the early game than to resquelch all of the
useless items.
(Note that useless items still have to be found and identified before
future ones are squelched so this doesn't affect the gameplay at all.)
>
>A text file which is loaded on-demand could help you standardise what
>you want to be squelched, for a particular char combo and early, mid
>and endgame.
This is a good idea and one that I had been considering. Since I normally
play a golem warrior there is a minimum of squelch menu fiddling at the
beginning of a game (for me) but I can certainly see that this would
be useful for other combos. I haven't added it yet but I plan to
in the next release of the patch. (I need to figure out how Angband
deals with various file io issues so this might take a little time.)
>
>>I personally always squelch broken daggers and broken swords so these
>>are never generated. I also squelch all skeletons, corpses, figurines,
>>torches, lanterns, spikes, and statues and never see these. It's really
>>a time saver. ;-)
>
>Artifact broken daggers and swords may be worth a lot and give you
>more blows (in Z 2.3.5 especially).
>
I guess that's a chance I'm willing to take. ;-)
>GSN
Regards,
Dave
Download David Blackston's squelching addition!
http://www.cs.berkeley.edu/~davidb/angband/
The next step he's adding a save/load feature...
All the rest of the more important squelching ideas have been more or
less covered.
>Download David Blackston's squelching addition!
>http://www.cs.berkeley.edu/~davidb/angband/
Don't you see? I'm discussing with David over his patch!
GSN
My bad, was quoting like a sig for people who haven't tried it.
Yeah didn't mean to insult your intelligence n stuff with that or anything :P
My bad.
Wouldn't this end up like autoscumming? Does it cause the game to simply
not-try to generate the items anymore, or does the game actually generate
them, and then automatically destroy them.
The main difference is, you'd get a higher concentration of good things in a
drop if it simply removes them from the list of things the game can
generate... I think it would unbalance things a bit.
--
the current lack of a cool signature is due to
the integration of true type fonts to email clients.
Fuck microsoft, fuck netscape.
Maybe I'll go back to VAX and Gopher.
neal hackler, ne...@westman.wave.ca
No, the game is allowed to create items as its always done, but the
squelch code intercepts these items *after* creation, then checks
whether they
should be suppressed or not.
It doesn't change what you see, you just don't see the junk.
--
"It is dangerous to be right when the government is wrong." - Voltaire
Ed C.
-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 80,000 Newsgroups - 16 Different Servers! =-----
>Wouldn't this end up like autoscumming? Does it cause the game to simply
>not-try to generate the items anymore, or does the game actually generate
>them, and then automatically destroy them.
The latter.
GSN