Recent content by valeskas

  1. V

    Water Purifier Mod not preventing damage from murky water, have to unequip/re-equip

    Seems to be fixed now. At a glance, the client RemoveBuff now sends instigatorId to server and it no longer echos it back.
  2. V

    Zombie spawn diminishing after long play time

    Actually, not exactly true. dnSpy supports debugging unity games, with conditional breakpoints and decompiled source and the ability to change source of specific methods and compile it back. All the good stuff. Any good programmer can debug it, given the easy repro. (waiting 150 hours is not...
  3. V

    ERR NCSimple_Deserializer (ch=0) Message

    In this case in the server log: 2025-10-06T15:13:44 4744.641 EXC Attempted to read past the end of the stream. at PooledBinaryReader.ReadByte () [0x00008] in <511861985a8443b48f3c22e037ca2d7e>:0 at PooledBinaryReader.ReadBoolean () [0x00000] in <511861985a8443b48f3c22e037ca2d7e>:0 at...
  4. V

    ERR NCSimple_Deserializer (ch=0) Message

    The server log is from a different date: 2025-10-06T19:05:58 18678.715 INF World.Unload
  5. V

    Water Purifier Mod not preventing damage from murky water, have to unequip/re-equip

    Investigated the issue under the debugger. My guess is this: The client on spawning does EntityBuffs.AddBuff in Equipment.Apply. After that, in EntityAlive.switchModelView it reequips stuff, calling EntityBuffs.RemoveBuff, then EntityBuffs.AddBuff again. EntityBuffs.RemoveBuff does not pass...
  6. V

    Water Purifier Mod not preventing damage from murky water, have to unequip/re-equip

    On a second thought, the idea is fine. Expecting a onSelfEquipStop first, onSelfEquipStart second is reasonable. Buffs obtained in these events should be just fixed to exist as expected.
  7. V

    Water Purifier Mod not preventing damage from murky water, have to unequip/re-equip

    This bug is not only about Water Purifier. It affects anything relying on buffs applied at onSelfEquipStart on dedicated server. For example Nerd Outfit without intellect mastery 3. For example Impact Bracing. For example Nerd Boots, Rogue Boots, Miner Boots, Raider Boots Probably Bandolier, a...
  8. V

    Crashing every other night with new PC

    Windows can be configured to write a memory dump on blue screen, and ppl can take a look at it. You can ask chatgpt for details "how to configure windows to write a full memory dump on bluescreen" "how to check memory dump to determine what cause the blue screen?"
  9. V

    Garbage Collection causes indefinite loading screen.

    Fun. Looking at GCUtils.PostUnload, public static void PostUnload() { GC.WaitForPendingFinalizers(); GCUtils.FullCollect(); } it can be some finalizer, not garbage collecting itself. If you feel like it, you can download process explorer, configure MS public...
  10. V

    GPU Acceleration for AI & Terrain Generation on Dedicated Servers

    Horde nights struggle not because CPU is weak. They struggle because alghorithms are not tested and optimized for big player counts. Algorithims with quadratic or worse scaling are not something that can be compensated with hardware. If you want it improved, best approach is to gift devs...
  11. V

    Windows Can't Start Game - Could not fully initialize Epic Online Services

    Seems to be this error from log: 2025-09-15T23:02:44 14.633 INF [EOS] Connection test failed: Invalid URI: The hostname could not be parsed. I think it tries to open https://api.epicgames.dev/sdk/v1/default in this particular case. Idk why it can fail, maybe try opening this url in the browser...
  12. V

    Windows Launching the game on Steam Issue

    You did not change anything, but the devs changed the launcher. And its unlikely that they have tested it on computers with non-english locales. My guess is not particularly important though, since you are playing anyway.
  13. V

    Windows Launching the game on Steam Issue

    My guess is that you have non english locale, that renders date a bit differently. And launcher has a bug about interacting with localized dates when it should not. Possible workaround - bypass the launcher by launching the game directly, it should be something like "c:\Program Files...
  14. V

    Server desynchronization

    Seems to be fixed in 2.3b9. Nice. For those curious - now SetOversizedStabilityDirty uses spatial index and checks the stuff in the block chunk, not entire map.
  15. V

    PC V2.3 b9 EXP

    I assumed the change is about driving physics. Vehicles steer differently in storms, and now 4x4 no longer do that.
Back
Top