Co8 8.1.0 bugs

Discussion in 'The Temple of Elemental Evil' started by sirchet, Aug 15, 2014.

Remove all ads!
  1. marc1967

    marc1967 Established Member

    Joined:
    Jan 19, 2014
    Messages:
    578
    Likes Received:
    60
    Ettins have 2 unusual bugs during combat that I don't think were intentional. I have a quick fix for both problems that I'll be using. This all assumes that you want the Ettin to attack with 2 weapons, of course. His original proto comes with both the Two Weapon Fighting and Improved Two Weapon Fighting feats, but they stuck him with 2 huge clubs that can't be dual wielded effectively. It looks like someone gave it a try at getting him using 2 weapons but there are 2 problems.

    1) He doesn't have a light off-hand weapon for his size category to give him +2 on his attacks.

    Changing the size of his Ettin Club, Off-Hand to size_medium and 1d8 damage triggers the +2 Light Off-hand Weapon bonus
    2) He swaps between using 2 weapons and 1 weapon between each attack round. Currently in his san_start_combat function, which triggers every combat round, he calls attachee.item_wield_best_all() which is causing this flipping.
    This fixed that problem:

    Code:
    if attachee.item_worn_at(4) == OBJ_HANDLE_NULL:
    		attachee.item_wield_best_all()
    Also, his 2 clubs are +4 and +3 magic weapons. Was this an attempt to offset the fact that the Light Off-hand Weapon bonus wasn't triggering? For my purposes I've removed the enhancements.

    Here's his attack numbers BEFORE:
    Ettin before.jpg

    And here they are AFTER the changes.
    Ettin after.jpg

    I hope no one tells me that the Ettin is too dumb to figure out to us a light off-hand weapon, or he just can't make up his mind during combat, or the magic clubs are a gift from Iuz.

    :suprised:
     
  2. Sitra Achara

    Sitra Achara Senior Member

    Joined:
    Sep 1, 2003
    Messages:
    3,613
    Likes Received:
    537
    Ettins are known to argue with themselves, so this is actually appropriate behavior :p

    @Dragon I've posted a hotfix for that issue, but it hasn't been rolled into an official release yet (or maybe it has and you got the one from the outdated mirror server - not sure anymore). Anyway, you can get the fix here http://www.co8.org/forum/showpost.php?p=134199&postcount=47
     
  3. Daryk

    Daryk Veteran Member

    Joined:
    Jan 14, 2012
    Messages:
    1,170
    Likes Received:
    32
    I finally had some time to look into the problem where Gremag stops talking to you. When comparing Gremag's DLG to Rannos', it seems there's a flag set ({1}{}{game.global_flags[197] = 1}) in the former and not the latter. Could that be the problem?
     
  4. Sitra Achara

    Sitra Achara Senior Member

    Joined:
    Sep 1, 2003
    Messages:
    3,613
    Likes Received:
    537
    I posted a fix on page 1 - is it not working for you?
     
  5. Daryk

    Daryk Veteran Member

    Joined:
    Jan 14, 2012
    Messages:
    1,170
    Likes Received:
    32
    I missed the fix... sorry about that! I'll have to go back and look when I get more time.
     
  6. Sabator

    Sabator Member

    Joined:
    Nov 25, 2012
    Messages:
    2
    Likes Received:
    0
    Spoiler alert
    I have a problem with the quest "What Lies Beneath" in Verbobonc
    I have found and arested Panathaes ,thus taking him into my party, taken the locket as evidence and use the emerald to talk to him and get a confesion , used the notes and found out where the children are, yet when i go talk to Captain Abiram with Panathaes in my group Tell him i have arested him and that he did it, i have no option other than to exit the conversation when he asks me for evidence, the same thing happened when i left him unconcious in the sewer and taked the kids into my group instead, is that a bug or is there something i did not do?
     
  7. Gaear

    Gaear Bastard Maestro Administrator

    Joined:
    Apr 27, 2004
    Messages:
    11,029
    Likes Received:
    42
    What version of the mod are you playing? That should have been fixed in 8.1.0.

    Check your version by clicking Help in-game and looking at the Co8 category.
     
  8. Lum Levits

    Lum Levits Member

    Joined:
    Aug 11, 2005
    Messages:
    37
    Likes Received:
    0
    Im having this issue as well. Sorta little different though, I left Hommlet and went to Nulb, did all my running around nulb (quest gathering) and returned to Hommlet. When screen come up party is standing in front of Inn of WW, with Brother Smith dialog screen up. However I have no 1-2-3 options, just black box. Box above shows a dialog history between me a Bother Smyth, but I actually never had the conversation with him. Also one of my PCs is suddenly overloaded ( he says so) but I cannot remove the dialog box so Im stuck. Cant move, check inventory, exit game, click on map...nothing. All I can do is wizz the mouse pointer around and hear ambient sounds.
     
  9. Rudy

    Rudy Established Member

    Joined:
    Jan 30, 2005
    Messages:
    345
    Likes Received:
    2
    I don't know how or why, but having an animal companion prevented the nulb ambush from triggering for me.

    The facts: After receiving the warning from Preston about the strange men looking for me, I went in and out of my house fifty times (I did count) with no result. Playing around with different options, I eventually dismissed my animal companion. The first time I entered the house without the animal companion, the encounter triggered.
     
  10. Gaear

    Gaear Bastard Maestro Administrator

    Joined:
    Apr 27, 2004
    Messages:
    11,029
    Likes Received:
    42
    I assume it changed your average party level.
     
  11. Rudy

    Rudy Established Member

    Joined:
    Jan 30, 2005
    Messages:
    345
    Likes Received:
    2
    To be clear, you mean the presence of the animal companion made the game evaluate my party as being weaker than without the animal companion? That's... odd, if so.
     
  12. Gaear

    Gaear Bastard Maestro Administrator

    Joined:
    Apr 27, 2004
    Messages:
    11,029
    Likes Received:
    42
    Not sure but the check for that encounter may have an upper bound as well.

    But yeah, it might be weaker, considering that you've added a presumably first level critter to your party, which will lower the average level.

    e.g., 5 member party who are all level 5 will average level 5, 6 member party with 5 level 5s and 1 level 1 will average 4.33. I believe the APL formula's more complicated than that, but you get the idea.
     
  13. marc1967

    marc1967 Established Member

    Joined:
    Jan 19, 2014
    Messages:
    578
    Likes Received:
    60
    I had this same problem when I played a solo necromancer. His tag-along animated skeletons and zombies lowered the party level so much I never got the encounter. It also prevents a lot of the high level random encounters which trigger off average party level.

    The average is the total levels divide by the size of the party. It then adds a 1/2 level for each member over 4, or subtracts 1/2 for each member under 4. Or if you prefer math:

    avg = (level/count) + (count - 4)/2
     
  14. WinstonShnozwick

    WinstonShnozwick Established Member

    Joined:
    Mar 2, 2011
    Messages:
    628
    Likes Received:
    23
    What new mods have been put in the 8.1 release, if any?

    The only custom mods I have added to my game previously are sitras temple map mod (which is extremely convenient and practical), and sjbs cursors.

    Are there any other useful extra mods for the current release that I should be aware of?
     
  15. zugschef

    zugschef Established Member

    Joined:
    Nov 4, 2012
    Messages:
    135
    Likes Received:
    0
    Is there any chance that the XP-bug is getting fixed anytime soon?
     
Our Host!