Comp 193
Collapse
X
-
- levels
- monster types
- uniques (and they are Tolkien only)
- items
- egos
- artefacts
- spells.
This is a beta release really, I have only played it on Windows, do let me know if you have any problems compiling / running.
A.Ironband - http://angband.oook.cz/ironband/ -
I was able to get this to compile on my Linux box with relatively little trouble. I haven't tried to actually play it yet, but I have gotten to the "town" screen with the given savefile.
What I did:
Run the autogen.sh command:Code:sh ./autogen.sh
1) The 'autogen.sh' script has a space between the '#' and the '!' on the first line. The space needs to be removed.
2) I had to remove the carriage-return characters i.e. convert the dos standard "carriage-return / linefeed" into the Unix standard "linefeed" (only). Otherwise, the shell kept trying to treat the carriage-return as a command to execute. I do this with
Code:sed 's/\r//' < infile > outfile
Once autogen.sh has been run, run the configure command. I used:
Code:./configure --with-no-install --disable-x11 --prefix=`pwd`
We now want to compile it using "make". I used the default Makefile provided, except I had to comment out the line:Code:LDFLAGS += -lSDL
Comment
-
I was able to get this to compile on my Linux box with relatively little trouble. I haven't tried to actually play it yet, but I have gotten to the "town" screen with the given savefile.
What I did:
Run the autogen.sh command:Code:sh ./autogen.sh
1) The 'autogen.sh' script has a space between the '#' and the '!' on the first line. The space needs to be removed.
2) I had to remove the carriage-return characters i.e. convert the dos standard "carriage-return / linefeed" into the Unix standard "linefeed" (only). Otherwise, the shell kept trying to treat the carriage-return as a command to execute. I do this with
Code:sed 's/\r//' < infile > outfile
Once autogen.sh has been run, run the configure command. I used:
Code:./configure --with-no-install --disable-x11 --prefix=`pwd`
We now want to compile it using "make". I used the default Makefile provided, except I had to comment out the line:Code:LDFLAGS += -lSDL
Thanks very much for that!
nikheizen said he got it compiled "on Ubuntu, using:"
Code:sh autogen.sh ./configure --with-no-install make
Should I make these changes to the distro? or create a separate *nix distro?
I don't know much about this stuff as you can no doubt tell.
A.Ironband - http://angband.oook.cz/ironband/Comment
-
Debo and wobbly are tearing their hair out over stat drain.
This problem could be fixed by making !Restoration native to shallower depth - or purchasable at the Alchemist.
One possible fix would be to (a) close the game, (b) go to line 1317 of /lib/edit/object.txt, which should read:
Code:A:20/2:40/4
Code:A:15/2:40/4
I suggest any comp players who would like to make this change should do so now.
I'm also planning to make some changes to unique monster rarities but that should probably wait until after the comp.
A.Ironband - http://angband.oook.cz/ironband/Comment
-
Aside from this stat drain stuff, I strongly encourage people to give this comp a go. I didn't think the game would feel that different than Vanilla or Quickband, but it really does, and I think it's pretty fun. (It's also possible some of what I'm experiencing is from not having played NPP much. It had too many Ps for me that I could N ignore.)
I'm not sure 'minimal' is necessarily the best name for it -- 50 floors and the current monster list is still a big game. Maybe 'Leanband'Glaurung, Father of the Dragons says, 'You cannot avoid the ballyhack.'Comment
-
-
Shelob at speed 15 seems a bit silly for her depth? I routinely meet her at DL5. Wouldn't 10 be enough? At least that way you can quaff !haste and run instead of having the interesting decision of "do I have ?teleport in my pack"
Also the "sinister, bitchy" description thing on that new darkelf unique is a little............Glaurung, Father of the Dragons says, 'You cannot avoid the ballyhack.'Comment
-
-
Some more stuff for my to-do list
- Give Priests a 'Turn Undead' spell at about CL10, which can banish ghouls and ghosts
- Allow a 10% chance of successfully reading a scroll when confused
- Make more egos and jewelery drop from about DL 15
A.Ironband - http://angband.oook.cz/ironband/Comment
-
Out of curiosity, what was the motivation for forking from NPP instead of Vanilla for this project? NPP seems to have a lot of added mechanics that don't really fall into the "minimal" theme.Glaurung, Father of the Dragons says, 'You cannot avoid the ballyhack.'Comment
-
I turned off a lot of Npp's bells and whistles. I did retain some gameplay features which I think are a large improvement over V (on balance).
A.Ironband - http://angband.oook.cz/ironband/Comment
Comment