Another roguelike / angband-like keyset bug: I can't dig. I use CTRL-h to dig to the left and it says "type ? for help". It says the same thing when I use +.
You use CTRL-direction as alter grid, but you also use CTRL-direction for underlying key commands in the roguelike set, so which is it? I'm guessing this messing some things up.
I can't find anything in the pref file for 'alter grid' to fix this.
EDIT: Okay, I figured something out. I added this near the end of pref.prf:
You probably won't want to use ^y to dig north when you fix this for a release version.
I think the best thing would be to reassign the underlying commands for the roguelike keyset instead of using CTRL to get the underlying command. Then you can use CTRL-direction to alter grids.
You use CTRL-direction as alter grid, but you also use CTRL-direction for underlying key commands in the roguelike set, so which is it? I'm guessing this messing some things up.
I can't find anything in the pref file for 'alter grid' to fix this.
EDIT: Okay, I figured something out. I added this near the end of pref.prf:
Code:
#alter grid A:/4 C:3:^h A:/4 C:1:^h A:/2 C:3:^j A:/2 C:1:^j A:/6 C:3:^l A:/6 C:1:^l #^k is destroy item A:/8 C:3:^y A:/8 C:1:^y
I think the best thing would be to reassign the underlying commands for the roguelike keyset instead of using CTRL to get the underlying command. Then you can use CTRL-direction to alter grids.
Comment