5 May 2011 development release(s)

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • myshkin
    replied
    Originally posted by Chud
    Ah, okay. Time permitting I may try to see what's going on there (dust off my meager C skills a little). In the meantime it sounds like I should be able to solve the problem by ditching any items brought over form the previous build and just acquiring new ones in the current version then.
    No need to spend effort here. I believe I've found and fixed the bug. But yes, your workaround should work between now and the next development release.

    Leave a comment:


  • myshkin
    replied
    Originally posted by PowerDiver
    There seems to have been a change, as of the 4/22 stuff I have been messing with, that gives monsters saving throws when they didn't use to have them. I couldn't even ID a wand [sleep monster I think] with repeated aims at a cutpurse. Was there any change to that in this 5/5 release?
    I'm having trouble reproducing this; I was able to ID-by-use a wand of confuse monster with a level 1 dwarf priest versus a small kobold at 50' on the first try. With what level character were you aiming the wand? The base resist chance for sleep monster wands versus cutpurses is 27%, minus 1% for every five player levels.

    (White icky things, being STUPID, cannot be slept.)

    Leave a comment:


  • d_m
    replied
    Originally posted by PowerDiver
    I was wondering if it's completely unintentional, or a goof on something similar but intentional.

    Don't look too hard. The previous nightly I have is dated 1/13, so it could have been introduced much earlier.
    I can confirm that my character was completely unable to put a white icky thing to sleep with a wand of sleep monster.

    This is in trac as bug #1427

    Leave a comment:


  • Chud
    replied
    Originally posted by Magnate
    I added code to rd_item_2 which should convert the flags of objects in old savefiles so that they stack properly with new objects, but for some reason this isn't working.
    Ah, okay. Time permitting I may try to see what's going on there (dust off my meager C skills a little). In the meantime it sounds like I should be able to solve the problem by ditching any items brought over form the previous build and just acquiring new ones in the current version then.

    In the meantime, apologies for the inconvenience w.r.t. stacking.
    No worries at all - such is the world of the development release.

    Leave a comment:


  • PowerDiver
    replied
    Originally posted by Magnate
    What bothers me about this is that I don't have any real idea which bugs/issues you (and other forks) consider intolerable and which are just irritants. IMO it might be worth adding a "severity" field to trac so that we can distinguish tickets in this way, and focus on fixing the top-rated ones.
    Some examples that come to mind:

    Dungeon areas with no stairs, which is a killer for ironman or disconnected_stairs. Pits missing a wall. Invisible purple monsters. Since I focus on id-by-use issues, failure of dInv is a much bigger deal to me than to others. The newest one is the failure of weak wands like -sleep to affect even cutpurses. I haven't made it to testing if that was fixed or is still broken.

    I wouldn't be surprised if half the issues I consider severe no one else find even serious, and presumably I am not the only one with a specific personal viewpoint, so I don't know if a new severity field is worth the effort.

    Leave a comment:


  • Derakon
    replied
    Yeah, the difficulty of enchanting was reduced awhile back. I couldn't tell you why, but at least in the case of armor it helps make up for the fact that you now need more AC than you used to.

    Leave a comment:


  • scud
    replied
    Previously I was under the impression that Enchant Weapon/Armour only got you as far as +10 before failing (or possibly being so unlikely to succeed that it was effectively 'impossible'). I've just dragged some arrows and speedy boots up to +15 levels. Nice.

    Doesn't quite make up for losing my stock of books and scrolls and potions, though...

    Leave a comment:


  • Magnate
    replied
    Originally posted by PowerDiver
    I was ready to port some code, but there were blocking(*) bugs. I think the first was the invisible purple monsters, but I don't really remember any more. Then a long progression in which a new blocking bug was introduced before the previous one was fixed. The dInvis bug is merely the last one.

    You folks teased me a few times by closing all of the trac issues that bothered me, and then I'd find out something else got broken but hadn't been noticed yet. This better not be a repeat!

    I don't mean the above as a complaint. You have to expect that sort of thing given the pace and nature of V development. I've just been waiting for a long time.
    No worries - I'll be glad if there aren't any issues in this nightly that prevent you from porting.

    What bothers me about this is that I don't have any real idea which bugs/issues you (and other forks) consider intolerable and which are just irritants. IMO it might be worth adding a "severity" field to trac so that we can distinguish tickets in this way, and focus on fixing the top-rated ones.

    Leave a comment:


  • Magnate
    replied
    Originally posted by Taha
    The was a failure to ID wands and staves by use bug a little while back. It was related to sleep / confuse / slow monsters I think. Can't find the ticket or thread right now, but pretty sure it was fixed in the last build I played.
    This was #1366 and was indeed closed about four weeks ago. Like d_m I am unaware of monsters getting additional saving throws for anything, but as Eddie says this could be an unintended side effect of something else. There has been a lot of refactoring of *player* saving throws to monster spells and breaths, but AFAICT that shouldn't yet have had any impact at all on monster saves. Definitely bears further observation though.

    Leave a comment:


  • Magnate
    replied
    Originally posted by Chud
    Noticed this in the dungeon now too; I found !CCW that won't stack with my inventory, and also a spellbook that similarly won't stack. It seems not to be related to inscriptions (my first though was hmm, these are both auto-inscribe items) - I tried removing the inscriptions and removing the auto-inscribe setting, no effect.

    My character is a CL27 Mage, and this only started happening recently - I'm not sure what changed. The savefile and pref files were copied over from the previous release (Apr 23) if that is relevant. Should I open a ticket for this, even though I'm not a developer? I'm not sure what the correct process is here.
    No, please don't open a ticket - we know what the problem is, but not why it's happening.

    When a savefile is loaded, each object is read into memory using a function called rd_item_X, where X is the version number of the savefile. Object flag handling has now changed, so X was incremented to save and load the new flags properly using rd_item_3. I added code to rd_item_2 which should convert the flags of objects in old savefiles so that they stack properly with new objects, but for some reason this isn't working. The two relevant lines in rd_item_2 are

    of_copy(o_ptr->flags, o_ptr->kind->base->flags);
    of_union(o_ptr->flags, o_ptr->kind->flags);

    We saw this bug in staging but couldn't see why it wasn't working, and assumed that it must have been an artefact of us all using savefiles we'd played in the staging branch, where things tend to get a bit muddled. I couldn't reproduce it with a "proper" old savefile.

    But the assumption was wrong, and it is clearly a problem with the changes to object flags (ticket #120) and the rd_item_2 code.

    All patches and suggestions welcome. In the meantime, apologies for the inconvenience w.r.t. stacking.

    Leave a comment:


  • Taha
    replied
    The was a failure to ID wands and staves by use bug a little while back. It was related to sleep / confuse / slow monsters I think. Can't find the ticket or thread right now, but pretty sure it was fixed in the last build I played.
    ________
    ExoticMae cam
    Last edited by Taha; August 14, 2011, 15:03.

    Leave a comment:


  • PowerDiver
    replied
    Originally posted by d_m
    I don't remember this, but I'll take a look for a commit on 4/22 that introduces this.

    Sure does seem like a bug.
    I was wondering if it's completely unintentional, or a goof on something similar but intentional.

    Don't look too hard. The previous nightly I have is dated 1/13, so it could have been introduced much earlier.

    Leave a comment:


  • Chud
    replied
    Originally posted by Chud
    There also seems to be a bug in item stacking
    Noticed this in the dungeon now too; I found !CCW that won't stack with my inventory, and also a spellbook that similarly won't stack. It seems not to be related to inscriptions (my first though was hmm, these are both auto-inscribe items) - I tried removing the inscriptions and removing the auto-inscribe setting, no effect.

    My character is a CL27 Mage, and this only started happening recently - I'm not sure what changed. The savefile and pref files were copied over from the previous release (Apr 23) if that is relevant. Should I open a ticket for this, even though I'm not a developer? I'm not sure what the correct process is here.

    Leave a comment:


  • d_m
    replied
    Originally posted by PowerDiver
    There seems to have been a change, as of the 4/22 stuff I have been messing with, that gives monsters saving throws when they didn't use to have them. I couldn't even ID a wand [sleep monster I think] with repeated aims at a cutpurse. Was there any change to that in this 5/5 release?
    I don't remember this, but I'll take a look for a commit on 4/22 that introduces this.

    Sure does seem like a bug.

    Leave a comment:


  • PowerDiver
    replied
    There seems to have been a change, as of the 4/22 stuff I have been messing with, that gives monsters saving throws when they didn't use to have them. I couldn't even ID a wand [sleep monster I think] with repeated aims at a cutpurse. Was there any change to that in this 5/5 release?

    Leave a comment:

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