4.0.2 Bugs
Collapse
X
-
-
It's quite frustrating to be battling Sauron and have him down to a couple **, then get level ported by him. Collect consumables again, if you must, and go down the stairs to find him instantly at full health.“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
-
I think this has changed. I don't think Nexus protection fully protects anymore. Nick?
It's quite frustrating to be battling Sauron and have him down to a couple **, then get level ported by him. Collect consumables again, if you must, and go down the stairs to find him instantly at full health.Comment
-
One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.Comment
-
Quiver Sorting
Not a bug per se, but more of a tweak request.
Currently, my quiver looks like this:
Code:Rounded Pebble +0+0 Rounded Pebble +2+5 Iron Shot +0+0
Code:Rounded Pebble +0+0 Iron Shot +0+0 Rounded Pebble +2+5
Comment
-
Comment
-
Yah, this is what I get for reading the forums and adjusting my game play.
Clvl 25 HE Ranger on Dlvl 26 @ a vault, with my stash tucked away in another room:
Code:Something commands you to go far away. You resist the effect! You sink through the floor. This place seems reasonably safe.
Comment
-
if (cave->mon_current && player_resists(player, ELEM_NEXUS))
msg("You resist the effect!");
Should set both up and down as false, which it doesn't do.
So you get the message "You resist the effect!" and then tele-level.
Also it seems that this doesn't consider saving throw at all.
[EDIT] that saving throw check is in different place. Apparently you get a saving throw against all monster spell effects. Or not. Tele-away still works with perfect saving throw, so there is something that determines if it applies or not. Can't figure out what that something is though.
[EDIT EDIT] Seems that it checks if there is save message in monster_spell.txt if I read source correctly. Tele-level does, so you should get saving throw against it.Last edited by Timo Pietilä; September 15, 2015, 12:15.Comment
-
Just play force descent and you should never fear Sauron doing that againPWMAngband 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
-
That was never the case, so definitely not a bug. Nexus resistance only protects against teleport effects from nexus and teleport level.Last edited by PowerWyrm; September 15, 2015, 12:20.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
-
In list-spell-effects.h
RSE(50, RSF_TELE_LEVEL, 0, FALSE, S_TELE_LEV, RV(1,0,0,0), RV(0,0,0,0), 0, FALSE, OF_RES_NEXUS, RV(40,0,0,0))Comment
-
Guessing this in effects.c
if (cave->mon_current && player_resists(player, ELEM_NEXUS))
msg("You resist the effect!");
Should set both up and down as false, which it doesn't do.
So you get the message "You resist the effect!" and then tele-level.
Also it seems that this doesn't consider saving throw at all.
[EDIT] that saving throw check is in different place. Apparently you get a saving throw against all monster spell effects. Or not. Tele-away still works with perfect saving throw, so there is something that determines if it applies or not. Can't figure out what that something is though.
[EDIT EDIT] Seems that it checks if there is save message in monster_spell.txt if I read source correctly. Tele-level does, so you should get saving throw against it.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
-
“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
-
Anyway, another bug: Cast detect monsters (or, I assume any related single-turn detection). If perception kicks in and you auto-squelch by the next turn, your detection disappears without you having a chance to examine it.Comment
Comment