Angband.oook.cz
Angband.oook.cz
AboutVariantsLadderForumCompetitionComicScreenshotsFunniesLinks

Go Back   Angband Forums > Angband > Variants

Reply
 
Thread Tools Display Modes
Old April 21, 2010, 03:25   #1
RogerN
Swordsman
 
RogerN's Avatar
 
Join Date: Jul 2008
Posts: 308
RogerN is on a distinguished road
Cryptband looking for testers

This is the first public release of Cryptband, and I'm looking for a few testers to provide feedback! Mostly I'm interested in quashing bugs and balancing monsters.

* Only Windows is supported right now. Cryptband is a .NET application (framework v2.0 required). It may be possible to run the game on Linux using WINE or Mono, but I haven't tried either.
* This version only supports tiles, no ASCII. ASCII support may be added in the future as I have time.
* The help files are almost non-existent. Keyboard commands are documented, however, and the game should be fairly intuitive for Angband veterans.

Download Cryptband v1.5
Download Cryptband Source v1.5 - Visual Studio 2008 project
Screenshot

There are several huge differences between Cryptband and Angband. In general, Cryptband is a much faster game.

* There are no stats (STR, CON, DEX, etc...) and therefore there is no stat gain.
* You do not gain experience from monsters. Instead, your character gains experience by diving deeper into the crypt. Take care not to dive too quickly, however, or you may find yourself under-equipped.
* Your maximum HP does not go up as you gain levels.
* There are no scrolls of recall. Instead, each level of the crypt has a portal back to town which can be used only once.
* Resting does not recover HP while in the crypt. The only way to recover HP is by returning to town or by drinking potions.
* Most items in your inventory do not stack. If you want to carry three scrolls of Phase Door then it's going to cost you three inventory slots.
* Speed is divided into movement speed, melee speed, ranged speed, and device speed. An item which grants you +10 movement speed does not allow you to swing your weapon any faster. Similarly, monsters which move very quickly will still attack and cast spells at normal speed. Actions not listed above are always performed at normal speed.
* Armor provides damage reduction, not evasion.
* Elemental resistances are quantitative and cumulative. For example, +6 fire resistance means that your character ignores the first 6 points of fire damage from a given attack.
* Cryptband uses fractional blows.
* All magical items are shown as {unusual} until they are completely identified. If you don't see the {unusual} tag then you know that an item is average.
* Players are encouraged to identify objects by using them. Cursed items are not sticky, and none of the consumables should kill you outright.
* All magical devices are activated with the zap command (z).

Last edited by RogerN; June 19, 2010 at 15:12.
RogerN is offline   Reply With Quote
Old April 21, 2010, 04:32   #2
buzzkill
Prophet
 
buzzkill's Avatar
 
Join Date: May 2008
Location: Indiana, USA
Posts: 2,939
Donated: $8
buzzkill is on a distinguished road
Looks cool, though I'm not sure about the greater concept. I'll definitely give it a spin when I get a chance.
__________________
www.mediafire.com/buzzkill - Get your 32x32 tiles here. UT32 now compatible Ironband and Quickband 9/6/2012.
My banding life on Buzzkill's ladder.
buzzkill is offline   Reply With Quote
Old April 21, 2010, 05:15   #3
Sirridan
Knight
 
Sirridan's Avatar
 
Join Date: May 2009
Posts: 560
Sirridan is on a distinguished road
Two things so far.

1. Giant rats breed too fast and are too strong.

EDIT:

I'm dumb, didn't see that resting isn't supposed to recover hp.

The big problem with that is a lot of the monsters are too strong in the early game, you'll run out of HP or money for potions, and since you can go up only once you can only heal once really without paying money.

Id' fix this by either letting resting recover hp in the dungeon, or after entering a portal coming from town, the portal re-opens somewhere else on the level, so you still have to hunt for it. Unless you want to force people to become healers early on so they can self heal and rest?

Last edited by Sirridan; April 21, 2010 at 05:32.
Sirridan is offline   Reply With Quote
Old April 21, 2010, 07:29   #4
SaThaRiel
Adept
 
SaThaRiel's Avatar
 
Join Date: Nov 2009
Posts: 174
SaThaRiel is on a distinguished road
Well - sad...since you use this properietary M$ crap, i can't test this variant. Also i think that it could be quite interesting from the gameplay.
IMO you shouldn't use programming languages like visual C (or other one-manufacturer-one-system languages) for *Bands because its against the philosophy. They should run without trouble on most common computer systems and not only on windows.
__________________
Proud candidate for the Angband Darwin Award!
SaThaRiel is offline   Reply With Quote
Old April 21, 2010, 15:44   #5
Pete Mack
Prophet
 
Join Date: Apr 2007
Location: Seattle, WA
Posts: 6,768
Donated: $40
Pete Mack will become famous soon enough
@SaThaRiel -- C# (and .NET) is not so proprietary as all that. Mono is an independent implementation. That said, I have no idea how complete an implementation it is. For something simple like an ascii terminal window, it should be pretty easy to stay compatible.

http://www.mono-project.com

And I have to say, C# + .NET is a very nice development platform. Want to find your armor class?

Code:
AC = Inventory
       .Where(x => x.Wielded)
       .Sum(x => x.ACBase + x.ACBonus)

Last edited by Pete Mack; April 21, 2010 at 15:51.
Pete Mack is offline   Reply With Quote
Old April 21, 2010, 21:02   #6
zaimoni
Knight
 
zaimoni's Avatar
 
Join Date: Apr 2007
Posts: 590
zaimoni is on a distinguished road
Quote:
Originally Posted by Pete Mack View Post
@SaThaRiel -- C# (and .NET) is not so proprietary as all that. Mono is an independent implementation. That said, I have no idea how complete an implementation it is. For something simple like an ascii terminal window, it should be pretty easy to stay compatible.
There's a few non-*band C# roguelikes that handle Mono fine (Mono's text console support is close to complete).

That said, the fastest way a native Windows user could test a C# to Mono/Linux build would be a LiveDVD (and the LiveDVD would have to ship with both gcc and Mono).
* The LiveCDs generally don't have gcc.
* Gentoo has a bad reputation here. I'm currently using Knoppix 6.2.1, but suspect I'll want to build up a library of known-good LiveDVDs.
__________________
Zaiband: end the "I shouldn't have survived that" experience. V3.0.6 fork on Hg.
Zaiband 3.0.10 ETA Mar. 7 2011 (Yes, schedule slipped. Latest testing indicates not enough assert() calls to allow release.)
Z.C++: pre-alpha C/C++ compiler system (usable preprocessor). Also on Hg. Z.C++ 0.0.10 ETA December 31 2011
zaimoni is offline   Reply With Quote
Old April 21, 2010, 21:10   #7
RogerN
Swordsman
 
RogerN's Avatar
 
Join Date: Jul 2008
Posts: 308
RogerN is on a distinguished road
Quote:
1. Giant rats breed too fast and are too strong.
Ratsplosions are definitely dangerous. If enough testers complain then I'll tone them down a bit. There are already some mitigating factors, however:

1) They only have 2 HP
2) There's only a 5% chance of squeaking for reinforcements
3) Rats cannot open or bash doors, so doors are an effective escape
4) Their bite is pitifully weak, requiring an average of 25 hits (without missing) to kill the player

Also, note that armor helps a *lot* against weak attacks from low-level monsters. With an AC of 13 you will absorb an average of 1 damage from every physical attack. When fighting rats, this basically cuts their damage in half.
RogerN is offline   Reply With Quote
Old April 21, 2010, 21:39   #8
Sirridan
Knight
 
Sirridan's Avatar
 
Join Date: May 2009
Posts: 560
Sirridan is on a distinguished road
My biggest gripe so far really is the lack of healing, I'll play around some more though when I get home. So far I'm just afraid it will be by sheer luck I get down passed level 2 or 3. Maybe I should avoid monsters more heh.

Also, do you get xp for falling through trap doors? If not it kinda sucks, being unable to get that experience (I've been down to level 3 a few times, only because I've fallen through traps)
Sirridan is offline   Reply With Quote
Old April 21, 2010, 21:50   #9
RogerN
Swordsman
 
RogerN's Avatar
 
Join Date: Jul 2008
Posts: 308
RogerN is on a distinguished road
Quote:
Originally Posted by Sirridan View Post
Also, do you get xp for falling through trap doors? If not it kinda sucks, being unable to get that experience (I've been down to level 3 a few times, only because I've fallen through traps)
No and yes. You do not gain a level for falling through a trap door, but when you go down the next staircase you'll gain two levels (or more, if you've fallen through multiple trap doors in a row).

Yes, avoiding monsters is definitely key. Attacking from a distance is also important, even if you don't improve your shooting skill.
RogerN is offline   Reply With Quote
Old April 21, 2010, 22:52   #10
getter77
Adept
 
Join Date: Dec 2009
Location: GA, USA
Age: 38
Posts: 240
getter77 is on a distinguished road
Send a message via AIM to getter77 Send a message via MSN to getter77 Send a message via Yahoo to getter77
Don't forget to make a Roguebasin page for this when you get a chance RogerN! It does sound nifty...
getter77 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Testers wanted - 'rebalanced monsters'. andrewdoull Vanilla 5 July 30, 2007 11:57


All times are GMT +1. The time now is 12:09.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.