I had that trigger recently while in Pukelman form, I was surprised it got through ImPois, but this makes sense... One could imagine all sorts of organic poisons being highly acidic (or basic!).
Angband 4.2.1
Collapse
X
-
Cool shapechange knowledge menu, but it throws off what I thought were carefully chosen mnemonics:
boo*K* seller
a*L*chemist
*M*agic Shop
h*O*me
etcPlease like my indie game company on Facebook! https://www.facebook.com/RatherFunGamesComment
-
“We're more of the love, blood, and rhetoric school. Well, we can do you blood and love without the rhetoric, and we can do you blood and rhetoric without the love, and we can do you all three concurrent or consecutive. But we can't give you love and rhetoric without the blood. Blood is compulsory. They're all blood, you see.”
― Tom Stoppard, Rosencrantz and Guildenstern are DeadComment
-
If you have a savefile at that moment, that would be handy.One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.Comment
-
Got a game crash after finding some randart boots. Happened that those were cursed and had -1 to movement speed. I guess the game doesn't like division by zero when calculating energy to spend...PWMAngband variant maintainer - check https://github.com/draconisPW/PWMAngband (or http://www.mangband.org/forum/viewforum.php?f=9) to learn more about this new variant!Comment
-
Also looking at the code for cursed shooters it seems that MIGHT cannot go negative while SHOTS can. I don't see why... Getting a long bow with -1 might (x2 instead of x3) seems perfectly fine as long as might stays above or equal to 1.PWMAngband variant maintainer - check https://github.com/draconisPW/PWMAngband (or http://www.mangband.org/forum/viewforum.php?f=9) to learn more about this new variant!Comment
-
If not in V, than maybe you could give a hint how to implement it via some hack?https://tangaria.com - Angband multiplayer variant
tangaria.com/variants - Angband variants table
tangar.info - my website ⍽⍽⍽⍽⍽⍽⍽⍽⍽⍽⍽⍽
youtube.com/GameGlaz — streams in English ⍽ youtube.com/StreamGuild — streams in RussianComment
-
“We're more of the love, blood, and rhetoric school. Well, we can do you blood and love without the rhetoric, and we can do you blood and rhetoric without the love, and we can do you all three concurrent or consecutive. But we can't give you love and rhetoric without the blood. Blood is compulsory. They're all blood, you see.”
― Tom Stoppard, Rosencrantz and Guildenstern are DeadComment
-
OK, filed as a bug, I'll think about sensible ways of making it negative.One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.Comment
-
Hey! Thanks! I'm really enjoying 4.2.1....
I took a long hiatus from the game (RL got really complicated for about 3 years) and decided to get back into the game about a week ago...and it's been a blast and a joy relearning one of my favorite games.
Thank you so much.
(I used to play the nightlies and help with debugging—I used to be StMicah on the forums, but couldn't remember logins/former emails. I plan to start playing the nightlies versions after my first win.)Comment
-
Code:move_energy * (1 + abs(num_moves - 1) - (num_moves - 1)) / (1 + abs(num_moves - 1))
Dropping the "1 +" when calculating state->num_moves from the extra move speed in player-calcs.c would simplify the above expression to
Code:move_energy * (1 + abs(num_moves) - num_moves) / (1 + abs(num_moves))
Comment
-
Code:move_energy * (1 + abs(num_moves - 1) - (num_moves - 1)) / (1 + abs(num_moves - 1))
Dropping the "1 +" when calculating state->num_moves from the extra move speed in player-calcs.c would simplify the above expression to
Code:move_energy * (1 + abs(num_moves) - num_moves) / (1 + abs(num_moves))
PWMAngband variant maintainer - check https://github.com/draconisPW/PWMAngband (or http://www.mangband.org/forum/viewforum.php?f=9) to learn more about this new variant!Comment
-
There are caps like that on the energy use in cmd-pickup.c. I don't understand the logic there. I had expected it would increment the energy use for the auto-pickups, but it overwrites what was calculated when making the move.Comment
-
Equipping dagger of slay animal with ring of mouse says "average damage: , and 0 vs others" (throwing message is correct).PWMAngband variant maintainer - check https://github.com/draconisPW/PWMAngband (or http://www.mangband.org/forum/viewforum.php?f=9) to learn more about this new variant!Comment
Comment