Angband 4.2.3

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • PowerWyrm
    replied
    Got an assert failure when trying to generate a level with a Cloud room template. Looking at the design of the room, there is a blank space instead of a floor tile on line 7836, causing the crash (!square_isempty).

    Leave a comment:


  • Nick
    replied
    backwardsEric has done a fix for these.

    Leave a comment:


  • PowerWyrm
    replied
    Following my previous post about SET_VALUE + CLEAR_VALUE, I found a potential bug in spell_description().

    In my variant, I have a class that has access to an "Elemental Bolt" spell, which is defined as:

    effect:SET_VALUE
    dice:$Dd8
    expr:PLAYER_LEVEL:- 5 / 4 + 5
    effect:BOLT_OR_BEAM:ACID:0:-10
    effect:BOLT_OR_BEAM:FIRE:0:-10
    effect:BOLT_OR_BEAM:COLD:0:-10
    effect:BOLT_OR_BEAM:ELEC:0:-10
    effect:CLEAR_VALUE

    When I display the description, it says: "Inflicts an average of 0 acid damage, 0 fire damage, 0 cold damage, 0 lightning damage."

    This happens because the fix for shared value in spell_effect_append_value_info() didn't get ported to spell_description().

    Leave a comment:


  • PowerWyrm
    replied
    Info for spell Resistance gives redundant info (which isn't even fully displayed): "dur 20+d20; dur 20+d20; dur".

    Looking at the code, I don't see the point of the "shared random_value". When an effect is defined by SET_VALUE + CLEAR_VALUE, the effect info should only been displayed once (for example: "dur 20+d20").

    Leave a comment:


  • wobbly
    replied
    Yes its that time.. time for everyone's favorite bug, quiver bugs! Anyway the character below has full inventory. If I throw the dagger or spear then walk over it, I no longer have inventory room for the spear or dagger. However if I drop an item I can pick up the spear/dagger and the item I just dropped.

    Code:
    [Angband 4.2.3-225-gea84e16c3 Character Dump]
    
      [Character Inventory]
    
    a) 3 Necromantic Tomes [Into the Shadows] {@m1}
         
         You can read this book.
         
    b) a Necromantic Tome [Dark Rituals] {@m2}
         
         You can read this book.
         
    c) 2 Mushrooms of Terror
    d) 13 Potions of Cure Serious Wounds {@q2}
    e) a Potion of Cure Critical Wounds {@q3}
    f) a Potion of Heroism {@q4}
    g) 5 Scrolls of Phase Door {@r4}
    h) 2 Scrolls of Teleportation {@r5}
    i) 3 Scrolls of Identify Rune
    j) 5 Scrolls of Remove Hunger
    k) 2 Scrolls of Word of Recall
    l) a Rod of Drain Life {@z5}
    m) a Rod of Light {@z1}
    n) a Rod of Illumination {@z3}
    o) a Wand of Confuse Monster (2 charges)
    p) 2 Wands of Hold Monster (9 charges)
    q) a Wand of Stun Monster (2 charges)
    r) a Wand of Darkness (11 charges)
    s) a Staff of Darkness (13 charges)
    t) a Staff of Detect Invisible (5 charges)
    u) a Ring of the Mouse (+0,-8) <+2, +1>
         Found lying on the floor at 550 feet (level 11)
         
         +2 dexterity.
         +1 stealth.
         
    
    
    
    
      [Character Quiver]
    
    0) 16 Rounded Pebbles (1d2) (+6,+3) {@v0 =g}
         Combat info:
         Average thrown damage: 9.
         
    1) a Spear (1d6) (+5,+1) {@v1 =g}
         Dropped by an unknown monster at 500 feet (level 10)
         
         Combat info:
         1.0 blows/round.
         With +3 STR and +0 DEX you would get 1.1 blows
         With +0 STR and +7 DEX you would get 1.1 blows
         Average damage/round: 11.3.
         Average thrown damage: 27.5.
         
    2) a Dagger (1d4) (+7,+5) {@v2 =g}
         Found lying on the floor in a pit at 500 feet (level 10)
         
         Combat info:
         1.0 blows/round.
         With +2 STR and +0 DEX you would get 1.1 blows
         With +0 STR and +7 DEX you would get 1.1 blows
         Average damage/round: 14.5.
         Average thrown damage: 22.7.
         
    3) 40 Arrows (1d4) (+0,+0) {=g}
         Combat info:
         When fired, hits targets up to 100 feet away.
         Average damage/round: 13.
         35% chance of breaking upon contact.
         
    4) 5 Arrows (1d4) (+0,+0) {=g}
         Combat info:
         When fired, hits targets up to 100 feet away.
         Average damage/round: 13.
         35% chance of breaking upon contact.

    Leave a comment:


  • backwardsEric
    replied
    Originally posted by Bogatyr
    This is amazingly annoying, especially for a ranger. I just started a 4.2.3-199 ranger and already on my first descent it's driving me crazy! The message should either be removed or made optional. Does it convey any useful information? It should be possible to opt out of quiver management messages... (both the "rearrange" and "combine")
    One solution, both to PowerWyrm's concern that triggered that change and to yours, would be to report the total number of a consumable in the inventory after one is used rather than what's in the current stack and to only display the recombining message if the recombining removed a stack. The recombining message in that case does provide a bit of information - the letter (or for the quiver, number) to address a stack may have changed and, if the stack that went away was used by the last command, you won't be able to repeat that last command with 'n' (ctrl-v in the roguelike keys).

    Leave a comment:


  • Bogatyr
    replied
    Originally posted by backwardsEric
    That was a change in 4.2.3 to resolve https://github.com/angband/angband/issues/4882 : with stacks of 40 and 10 similar items using one from the stack of 40 would give a "You have 39 ..." message but a (silent) recombining of the pack would leave stacks of 40 and 9 which some felt was confusing. Firing from the last stack (highest numbered quiver slot) of the (+0, +0) arrows would avoid the recombining message, though that's admittedly less convenient since the slot number of the last stack can change while firing.
    This is amazingly annoying, especially for a ranger. I just started a 4.2.3-199 ranger and already on my first descent it's driving me crazy! The message should either be removed or made optional. Does it convey any useful information? It should be possible to opt out of quiver management messages... (both the "rearrange" and "combine")
    Last edited by Bogatyr; December 29, 2021, 08:21.

    Leave a comment:


  • Nick
    replied
    Originally posted by Ingwe Ingweron
    From my empirical observations, if one saves and exits during single combat, then returns to the game and conquers in the single combat, @ will reappear on the map at some new location rather than the single combat location. However, if one completes the single combat in one go, without a save-exit-return, @ will appear where the single combat took place.
    This should be fixed in the latest nightly build.

    I'm starting to feel like we've just about ironed out all the bugs in single combat, and am thinking it might be nearly time to do a 4.2.4 release.

    Leave a comment:


  • Ingwe Ingweron
    replied
    Originally posted by Selkie
    Thanks Eric. It worked, but strangely after I killed Tseuklas I was sent to a different area of the map, not where I'd cast Single Combat. Not that it mattered.

    I continued playing and levelled up to 45, but then when I went down some steps it crashed again. It seems like Single Combat really does some damage to the game somehow.
    From my empirical observations, if one saves and exits during single combat, then returns to the game and conquers in the single combat, @ will reappear on the map at some new location rather than the single combat location. However, if one completes the single combat in one go, without a save-exit-return, @ will appear where the single combat took place.

    Leave a comment:


  • backwardsEric
    replied
    Originally posted by Selkie
    It worked, but strangely after I killed Tseuklas I was sent to a different area of the map, not where I'd cast Single Combat. Not that it mattered.

    I continued playing and levelled up to 45, but then when I went down some steps it crashed again. It seems like Single Combat really does some damage to the game somehow.
    The first part is understandable: if it can't locate where the monster in the duel was in the main level, the character get's placed in another location. Ingwe has mentioned that happening after saving (and presumably exiting) while in Single Combat.

    If you're playing 4.2.3, the second part is also understandable. The nightly versions for a while have had some fixes for single combat, so using one of those should help. This one should be good enough (later ones fix some things but have a problem with a spurious prompt in the Mac and Window versions when one opts for a new game from the menus). If you're already playing a nightly version, then we've got more debugging to do with Single Combat.

    In any case, posting a more recent zip of the savefile would allow Nick or I to fix it and let you continue with the character.

    Leave a comment:


  • Selkie
    replied
    Thanks Eric. It worked, but strangely after I killed Tseuklas I was sent to a different area of the map, not where I'd cast Single Combat. Not that it mattered.

    I continued playing and levelled up to 45, but then when I went down some steps it crashed again. It seems like Single Combat really does some damage to the game somehow.

    Leave a comment:


  • Nick
    replied
    Originally posted by backwardsEric
    Selkie, here's a version of Lona's savefile that should be fixed.
    I think I'm officially obsolete now

    Leave a comment:


  • backwardsEric
    replied
    Selkie, here's a version of Lona's savefile that should be fixed.
    Attached Files

    Leave a comment:


  • Selkie
    replied
    Thanks Nick, much appreciated.
    Attached Files

    Leave a comment:


  • Nick
    replied
    Originally posted by Selkie
    How can I attach a savefile please?
    When you reply, there's a section below for additional options. Compress your savefile, then choose the "manage attachments" button and select the zipped file.

    Leave a comment:

Working...
😀
😂
🥰
😘
🤢
😎
😞
😡
👍
👎