Well, I have only just started playing roguelikes a few days ago. But I am doing fairly well in Angband now, first played nethack but I liked 'band variants more. Currently level 6 High-Elf warrior, only down to like dl8...found smeagol and kill him. Got a Cutlass Holy Avenger (1d7) (+12,+9) [+4] from him, currently my main weapon. This is my best game so far, I found smeagol on level 3 too. Is that unusual to find him that early into the dungeon?
Yet another new player
Collapse
X
-
He sometimes even lurks around on level 1.
And steels all you money!
With see invisible from yoru high elf he might have been less annoying than usual. ^^ -
Try <Shift> + 'C' to get to the character screen, then 'F' to dump to a file.NPP(0.5.0-BETA6) D "Daith" KoRo L:36 DL:50 A+ R+ Sp w:The Two-Handed Sword of Cutur (3d6) (+18,+16) (+2)
En/NPP(Un/Cr/Do) L H- D c-- f PV+ !s d P++ M+
C-- S- I-- !So B-- ac GHB- SQ+ RQ V
The Angband CodeComment
-
I'm playing on Ubuntu, and whenever I try that it says "Character dump failed!"
What made you pick a High Elf as a warrior? They have a penalty to STR. EDIT: Wait, nevermind. They're pretty much Dunadans but more stats.Last edited by Poop Loops; May 13, 2008, 17:56.Comment
-
I saved the game I was playing and clicked the X on the window, then typed this into the terminal I used to open the game into the first place:
tomek@tomek:~$ pwd
/home/tomek
tomek@tomek:~$ which angband
/usr/games/angband
tomek@tomek:~$ ls -R ~/.angband
/home/tomek/.angband:
Angband ZAngband
/home/tomek/.angband/Angband:
monster.txt Tomek lvl 17 D Tomek.prf Tomek.txt x11-settings.prf
/home/tomek/.angband/ZAngband:
tomek@tomek:~$Comment
-
Yes, but when it prompts me to overwrite it for the new dump, it says the character dump failed. Do I need to make a new file for every dump I make? What if I just want to update my current dump?Comment
-
Sounds like a file/directory permissions issue...like it will let you write, but not delete the old file so that you can save a file of the same name. Did you check the directory/file permissions?NPP(0.5.0-BETA6) D "Daith" KoRo L:36 DL:50 A+ R+ Sp w:The Two-Handed Sword of Cutur (3d6) (+18,+16) (+2)
En/NPP(Un/Cr/Do) L H- D c-- f PV+ !s d P++ M+
C-- S- I-- !So B-- ac GHB- SQ+ RQ V
The Angband CodeComment
-
Comment
-
tomek@tomek:~$ ls -Rl ~/.angband
/home/tomek/.angband:
total 8
drwx------ 2 tomek tomek 4096 2008-05-11 20:27 Angband
drwx------ 2 tomek tomek 4096 2008-05-03 13:52 ZAngband
/home/tomek/.angband/Angband:
total 244
-rw-r--r-- 1 tomek tomek 219836 2008-05-03 18:31 monster.txt
-rw-r--r-- 1 tomek tomek 6119 2008-05-08 18:51 Tomek lvl 17 D
-rw-r--r-- 1 tomek tomek 550 2008-05-06 20:55 Tomek.prf
-rw-r--r-- 1 tomek tomek 4212 2008-05-11 20:27 Tomek.txt
-rw-r--r-- 1 tomek tomek 149 2008-05-13 10:12 x11-settings.prf
/home/tomek/.angband/ZAngband:
total 0
I guess I should change them to be rw for all uses?Comment
-
NPP(0.5.0-BETA6) D "Daith" KoRo L:36 DL:50 A+ R+ Sp w:The Two-Handed Sword of Cutur (3d6) (+18,+16) (+2)
En/NPP(Un/Cr/Do) L H- D c-- f PV+ !s d P++ M+
C-- S- I-- !So B-- ac GHB- SQ+ RQ V
The Angband CodeComment
-
As bonzo said, I guess the permissions are the problem. The following would probably do the trick, but it's a security risk (malicious hackers may be after your Angband savefiles!)
chmod -R a+Xwr ~/.angband
Hmm, perhaps we should change the group of the Angband directory to games and then do only
chmod -R g+Xwr ~/.angband
?
Or perhaps even the following would suffice without messing up with groups?
chmod -R a+Xr ~/.angbandComment
-
Comment