Page MenuHomeFeedback Tracker
Feed Advanced Search

Mar 20 2025

VinGal created T190221: Ability to update "dispersion" / "dispersionModifier" in script..
Mar 20 2025, 3:07 AM · DayZ Modding, DayZ
Toggy added a comment to T190067: 1.27 Experimental Server Access violation. Illegal read by 0x7ffd6bf0a9b0 at 0x28b00000011.

@Geez Resolved, mod causing the issue was singled out and removed

Mar 20 2025, 1:49 AM · DayZ
DrZiLLo created T190218: Server crash.
Mar 20 2025, 1:15 AM · DayZ

Mar 19 2025

MrPepe created T190212: Cheating.
Mar 19 2025, 9:43 PM · DayZ
Ralf1105 created T190205: Walls are destroying themself if placed to close.
Mar 19 2025, 7:03 PM · DayZ
MilesDownshur created T190203: We need to talk guys.
Mar 19 2025, 6:28 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

No, it's very much related. The muzzle index being wrong on load is just an effect of the bug.

Mar 19 2025, 6:14 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

I've moved that into https://feedback.bistudio.com/T190201 - the muzzle error is a bug on its own.

Mar 19 2025, 5:59 PM · DayZ
bzed created T190201: FileSerializer - FileMode.APPEND without function since 1.27.
Mar 19 2025, 5:58 PM · DayZ
lava76 added a comment to T189830: Muzzle error crashing server.

No, it's very much related. The muzzle index being wrong on load is just an effect of the bug.

Mar 19 2025, 5:43 PM · DayZ
SirAdef added a comment to T189830: Muzzle error crashing server.

Same here...
Server start -> file gets created at 0KB
player enters -> no change...
player leaves afer a while -> no change...
Server resatrt -> no change...

Mar 19 2025, 5:43 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

I think this might need to go into a bug report on its own, this one is really about a bug in weapon/muzzle handling.

Mar 19 2025, 5:32 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

@lava76 I've changed the code to

+     FileSerializer s = new FileSerializer();
+         s.Open("$profile:test2.bin", FileMode.WRITE);
+         s.Write("TEST");
+         s.Close()
+     for (int i = 0; i < 2; i++)
+     {
+         s.Open("$profile:test2.bin", FileMode.APPEND);
+         s.Write("TEST");
+         s.Close();
+     }
Mar 19 2025, 5:31 PM · DayZ
Krawalldemar created T190199: Base Building.
Mar 19 2025, 5:31 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

My first observation is: test.bin does not get written at all on s.Close() - its still empty after the server started.
The server crashes on shutdown and the file is gone (!)
After the restart, the file is empty again...

Mar 19 2025, 5:17 PM · DayZ
SirAdef added a comment to T189830: Muzzle error crashing server.

It looks like FileMode.APPEND does not work under Linux, the file is seemingly overwritten if opened in that mode. Note that I'm basing this off logs and files that people have sent me, as I currently don't have a Linux testing setup. If you want to test this theory, put this code into your init.c (e.g. at the bottom of the main function):

FileSerializer s = new FileSerializer();
for (int i = 0; i < 2; i++)
{
    if (s.Open("$profile:test.bin", FileMode.APPEND))
    {
        s.Write("TEST");
        s.Close();
    }
}

After running that, the file test.bin in your server profile directory should contain (hex) 04 00 00 00 54 45 53 54 04 00 00 00 54 45 53 54 (same string twice). If it only contains 04 00 00 00 54 45 53 54 (once), then that's indeed the mode of failure.

Mar 19 2025, 5:10 PM · DayZ
Ogecca created T190197: Захожу на сервер но не чего не могу сделать .
Mar 19 2025, 4:47 PM · DayZ
lava76 added a comment to T189830: Muzzle error crashing server.

It looks like FileMode.APPEND does not work under Linux, the file is seemingly overwritten if opened in that mode. Note that I'm basing this off logs and files that people have sent me, as I currently don't have a Linux testing setup. If you want to test this theory, put this code into your init.c (e.g. at the bottom of the main function):

Mar 19 2025, 4:40 PM · DayZ
bzed added a comment to T189712: Enforce script allows access to uninitialized variables during class inheritance - segfaulting in Linux.

@lava76 indeed that case crashes on linux. I've debugged that in an older version of https://steamcommunity.com/sharedfiles/filedetails/?id=3381664818 and the mod was rewritten to use proper constructors and super calls as you would do it in c++, which fixed the segfault. The original constructor was in the form as mentioned above, rather simple, some variables in the child class, and the access to the base class segfaulted.

Mar 19 2025, 4:38 PM · DayZ Modding, DayZ
M4ketech added a comment to T189789: BattleEye fails to start with DayZ.

I tested it with opening launcher as admin. First time worked fine and second and third time same error.

Mar 19 2025, 3:46 PM · DayZ
M4ketech added a comment to T189789: BattleEye fails to start with DayZ.

I did give full permission to authenticated users, problem is still there.

Mar 19 2025, 3:36 PM · DayZ
lava76 added a comment to T189830: Muzzle error crashing server.

To share the information I have up to this point, the issue seems to be related to FileSerializers. It looks like they cannot reliably be written, and maybe also not reliably be read, under Linux. The failures seem to be silent during the actual write/read, i.e. the game doesn't print or otherwise hint at anything being wrong, which is why the effects of these failures crop up later when the read data is attempted to be used.

Mar 19 2025, 3:23 PM · DayZ
falagor closed T189636: Incorrect Russian grammar in $STR_CfgVehicles_SherpaHat_ColorBase0" as Resolved.

We'll fix this, thanks!

Mar 19 2025, 3:01 PM · DayZ
lava76 added a comment to T189712: Enforce script allows access to uninitialized variables during class inheritance - segfaulting in Linux.

There is no such thing as an uninitialized variable in EnforceScript. All variables are initialized to a default on declaration if there is no direct assignment (bool false, float 0.0, int 0 , string "", vector "0 0 0", anything other NULL), and this is a core language feature. Think Java/C#, not C/C++. The above example is valid code and completely fine. If that indeed crashes under Linux(?), that's a bug that needs to be fixed on that platform.

Mar 19 2025, 2:58 PM · DayZ Modding, DayZ
fraky added a comment to T189830: Muzzle error crashing server.

It also occurred to me how much Linux and how much Windows. My server runs on Linux. I'm going to try it on Windows, because I'm starting to get nervous.

Mar 19 2025, 2:57 PM · DayZ
lava76 added a comment to T189830: Muzzle error crashing server.

Now let's get an overview of how many of these servers that are having problems are running under Linux like the OP.

Mar 19 2025, 2:51 PM · DayZ
oldmann1991 added a comment to T189923: SaveCurrentFSMState Crash.

we found a way to stop the crashing. we have removed all the revolvers (No matter If modded ones or the Vanilla one). Since that we dont have issues anymore. Try it maybe it will help you too. BUT we still have other fsm errors that are not related to the
revolvers, those dont crash the server.

Mar 19 2025, 2:12 PM · DayZ
Geez added a comment to T190087: black screen and crashing on startup.

Tried to search in the paste but didn't found it

EDIT: After doing a hell of updating my Drivers, it partially fixed. But now that DayZ updated, it is giving STATUS_ACCESS_VIOLATION error.
Here's the logs now:

I believe those errors is happening because of the new Upd, and the servers might hasn't been updated yet.

Mar 19 2025, 2:06 PM · DayZ
Nate_LapT added a comment to T190169: lightning strike cuts light .

This isn't a specific point issue.

Mar 19 2025, 1:54 PM · DayZ
Geez closed T190177: Unable to Launch Game as Resolved.

Thank you.
The error is provided by Windows and not DayZ. Probably only a full windows re-install can help as the error isn't pointing to what is causing the error. Typically this error should include a path to the dll that is faulty but in this case it is blank.

Mar 19 2025, 1:15 PM · DayZ
Geez changed the status of T190177: Unable to Launch Game from Need More Info to Assigned.
Mar 19 2025, 12:58 PM · DayZ
TityBoiTyler added a comment to T190177: Unable to Launch Game.

Hey Geez,

Mar 19 2025, 12:46 PM · DayZ
Geez closed T190192: I don't know what's in the mind of the devs as Resolved.

Known issue. Closing the ticket as duplicate.

Mar 19 2025, 12:26 PM · DayZ
ArtemDozhd added a comment to T189923: SaveCurrentFSMState Crash.

@Geez
Sooner or later, everyone will have such a crash. This crash happens on all servers. Somewhere more often, somewhere less often. Tell us what information we need to provide so that you indicate what exactly affects the crash? Stack trace shows vanilla functions. I tried to completely limit it, it did not help me

Mar 19 2025, 12:24 PM · DayZ
hirosansei created T190192: I don't know what's in the mind of the devs.
Mar 19 2025, 11:34 AM · DayZ
Geez changed the status of T190169: lightning strike cuts light from Awaiting internal Testing to Confirmed Internally.
Mar 19 2025, 11:23 AM · DayZ
bzed added a comment to T179734: On Linux, the server does not normally shut down on an event from `messages.xml`.

In 1.26 and 1.27 I regularly see a segfault when dayz is shutdown with the rcon shutdown command, but it doesn't seem to appear (or at least less...) when I send a TERM signal. Haven't seen a double free on shutdown yet.

Mar 19 2025, 11:21 AM · DayZ
william8293 added a comment to T189776: Menu Bug since new Update 1.27.
Mar 19 2025, 10:59 AM · DayZ
Geez changed the status of T190163: KA-101 change request from New to Feedback.
Mar 19 2025, 10:57 AM · DayZ
Geez closed T190161: Dayz Cheater as Resolved.

Thank you for the report.
All hacking incidents are being investigated by BattlEye.
Regards,
Geez

Mar 19 2025, 10:57 AM · DayZ
Geez changed the status of T190171: Game really needs to pay attention in the details that ruins the experience from New to Feedback.
Mar 19 2025, 10:57 AM · DayZ
Geez changed the status of T190169: lightning strike cuts light from New to Awaiting internal Testing.
Mar 19 2025, 10:56 AM · DayZ
Geez closed T190174: Cheater as Resolved.

Hello Necronon.
All hacking incidents are being investigated by BattlEye.
Unfortunately we do not reimburse any lost gear.
Regards,
Geez

Mar 19 2025, 10:55 AM · DayZ
Geez changed the status of T190177: Unable to Launch Game from New to Need More Info.

Hello TityBoiTyler.
Can you please describe the issue in greater detail? Is there some sort of error? Can you take a screenshot?

Mar 19 2025, 10:51 AM · DayZ
Geez changed the status of T190186: No me deja iniciar el juego me sale error from New to Reviewed.

Hello B1995.-
Please try the following:

Mar 19 2025, 10:50 AM · DayZ
B1995.- created T190186: No me deja iniciar el juego me sale error .
Mar 19 2025, 8:46 AM · DayZ
CooleMarty added a comment to T189870: Exception code: C000001D ILLEGAL_INSTRUCTION at 25FBE84D.

Anybody else have this fault.
Any fixes available.
Cannot play DayZ or Arma3 anymore!!!

Mar 19 2025, 12:19 AM · DayZ

Mar 18 2025

a3uMyT125 added a comment to T190098: 0xcfffffff status_application hang помогите решить.

у меня не заходит в игру.зависает на черном экране.Потом игра не отвечает

Mar 18 2025, 11:49 PM · DayZ
TityBoiTyler added a comment to T190177: Unable to Launch Game.

Mar 18 2025, 11:21 PM · DayZ
TityBoiTyler created T190177: Unable to Launch Game.
Mar 18 2025, 11:20 PM · DayZ
tommy__ added a comment to T189830: Muzzle error crashing server.

Hey, we're facing the same issue regarding the error "Weapon.OnStoreLoad <WEAPON> trying to set muzzle index 5 while it only has 1 muzzles!".
Unfortunately we have not found any clear evidence when it occurs, sometimes 2 hours after serverwipe, sometimes 2 days.

Mar 18 2025, 11:13 PM · DayZ
cwagn added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

3 Servers have been good so far since update.

Mar 18 2025, 10:10 PM · DayZ
Necronon created T190174: Cheater .
Mar 18 2025, 10:03 PM · DayZ
Dirkalot added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

So I run 6 live servers, 3 of them have been crashing multiple times per restart since 2-25. Those 3 servers just went a full restart, 3 hours, without a crash. This is a good sign.

Mar 18 2025, 9:13 PM · DayZ
hirosansei created T190171: Game really needs to pay attention in the details that ruins the experience.
Mar 18 2025, 8:43 PM · DayZ
TheLoser created T190169: lightning strike cuts light .
Mar 18 2025, 8:22 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

It's the same for me, after restarting the server, health and water are reset to the default 599. and the player's ammo is replenished to a full 20 pieces, if he had less. I'm going to cry in the corner.

Mar 18 2025, 8:16 PM · DayZ
WilliamBroown added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

I've switched back from 2 to 4 hour restarts and turned on airdrops. Will report back if any crashes.

Mar 18 2025, 8:04 PM · DayZ
fraky added a comment to T189830: Muzzle error crashing server.

It's the same for me, after restarting the server, health and water are reset to the default 599. and the player's ammo is replenished to a full 20 pieces, if he had less. I'm going to cry in the corner.

Mar 18 2025, 8:03 PM · DayZ
Nate_LapT added a comment to T190066: Player Footsteps.

It really feels like someone is saying, Lets add this to the game, someone quickly writes up a config, implements it, passes it to QA, QA goes. yup, it's there.

Mar 18 2025, 8:02 PM · DayZ
Tyson updated subscribers of T179086: Items fall through Objects when dropping.

@Geez bump. This is still an ongoing issue.

Mar 18 2025, 7:46 PM · DayZ
Zeneth7 created T190163: KA-101 change request .
Mar 18 2025, 6:03 PM · DayZ
Dirkalot added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

2 updates in a row where one of my server's dayzserver.exe processes is stuck in Windows and can't be deleted/replaced without restarting the bare metal. Lovely.

Mar 18 2025, 5:55 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

@Geez I can provide memory dumps / rpt files, or if it helps I can keep the linux core file next time so you can load it into gdb

Mar 18 2025, 5:44 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

I had just a crash (after updating to the last release today), with the same origin. Not a vanilla server though:

Mar 18 2025, 5:36 PM · DayZ
Single_360 added a comment to T190087: black screen and crashing on startup.

Tried to search in the paste but didn't found it

Mar 18 2025, 5:21 PM · DayZ
Aletricio76 created T190161: Dayz Cheater.
Mar 18 2025, 5:05 PM · DayZ
Zubert added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

Doesn't look like today's hot fix addresses this issue.

It is in the patchnotes but under these two tickets T189322 and T189419 :)

Mar 18 2025, 4:02 PM · DayZ
AppleCartUpsetter added a comment to T189923: SaveCurrentFSMState Crash.

@Geez Can you at least give us the information present in the dump files? What are the values of variables in the stack at the time? What are the classnames of the objects failing FSM state reconciliation? Which objects have been dereferenced? If this is, as you believe, an issue with modded content then we need more information to work around it.

Mar 18 2025, 3:49 PM · DayZ
Amock123 added a comment to T190124: Gascooker sounds do not disapear even when turnt off (also in inventory).

I think it only appears after something was cooked.
Only happens sometimes.

Mar 18 2025, 3:35 PM · DayZ
Dirkalot added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

I haven't seen anything, I did see they posted 5 days ago on X, that they were "consolidating" servers due to less demand from previous launches.

Mar 18 2025, 2:56 PM · DayZ
rasluis added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

Doesn't look like today's hot fix addresses this issue.

It is in the patchnotes but under these two tickets T189322 and T189419 :)

Mar 18 2025, 2:31 PM · DayZ
Geez added a comment to T189923: SaveCurrentFSMState Crash.

Unfortunately so far we are unsuccessful in replicating the issue

Mar 18 2025, 2:27 PM · DayZ
fraky added a comment to T189830: Muzzle error crashing server.

[ OK ] Updating dayzserver: Checking for update: SteamCMD

Mar 18 2025, 2:16 PM · DayZ
Geez changed the status of T190156: Selecting a game version in Steam from New to Feedback.
Mar 18 2025, 2:05 PM · DayZ
Geez added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

Doesn't look like today's hot fix addresses this issue.

Mar 18 2025, 1:54 PM · DayZ
Dirkalot added a comment to T189290: [SERVER CRASH] Access violation. Illegal read by 0x7ff72f24e1b4 at 0xffffffffffffffff.

Doesn't look like today's hot fix addresses this issue.

Mar 18 2025, 1:36 PM · DayZ
starshii_brat created T190156: Selecting a game version in Steam.
Mar 18 2025, 1:29 PM · DayZ
bzed added a comment to T189830: Muzzle error crashing server.

@fraky what you are describing sounds like https://github.com/Arkensor/DayZ-CommunityFramework/issues/183 - which actually points to https://feedback.bistudio.com/T189290. The Muzzle error is - at least in my experience - not related to that.

Mar 18 2025, 1:15 PM · DayZ
ArtemDozhd added a comment to T189923: SaveCurrentFSMState Crash.

@Geez Hello. Do you have enough information that more and more new players provide?

Mar 18 2025, 1:05 PM · DayZ
redbuddha added a comment to T190152: 0xC000001D-STATUS_ILLEGAL_INSTRUCTION.

Could anyone assist with this error please.
I noticed this just after updating to DayZ 1.27.
my DayZ game loads until the very last loading window just before entering a server (Any server)
It then crashes with a report 0xC000001D-STATUS_ILLEGAL_INSTRUCTION

Mar 18 2025, 12:16 PM · DayZ
redbuddha updated the task description for T190152: 0xC000001D-STATUS_ILLEGAL_INSTRUCTION.
Mar 18 2025, 12:15 PM · DayZ
redbuddha created T190152: 0xC000001D-STATUS_ILLEGAL_INSTRUCTION.
Mar 18 2025, 12:14 PM · DayZ
yani edited Steps To Reproduce on T190149: Problema con applicazione.
Mar 18 2025, 11:15 AM · DayZ
yani created T190149: Problema con applicazione.
Mar 18 2025, 11:12 AM · DayZ
Geez added a comment to T189877: Using the "ECE_NOPERSISTENCY_CHAR" flag for spawned items causes the player corruption when loading..

Hello, Unfortunately there is no Estimate I can provide.

Mar 18 2025, 11:02 AM · DayZ Modding, DayZ
Geez added a comment to T190087: black screen and crashing on startup.

It is in the appdata folder where the other files such as .RPT are found

Mar 18 2025, 11:01 AM · DayZ
c4kvwbfb updated the task description for T190146: Vehicles and boat decay.
Mar 18 2025, 10:57 AM · DayZ
c4kvwbfb updated the task description for T190146: Vehicles and boat decay.
Mar 18 2025, 10:54 AM · DayZ
Geez changed the status of T190136: Add/expose a way to get millisecond-accurate timestamp from New to Feedback.
Mar 18 2025, 10:48 AM · DayZ
Geez changed the status of T190145: rest api from New to Feedback.
Mar 18 2025, 10:48 AM · DayZ Modding, DayZ
Geez closed T190133: hacker again as Resolved.
Mar 18 2025, 10:47 AM · DayZ
Geez changed the status of T190124: Gascooker sounds do not disapear even when turnt off (also in inventory) from New to Awaiting internal Testing.
Mar 18 2025, 10:46 AM · DayZ
Geez closed T190125: Gun fires if you press the "aim" key and doesnt stop then as Resolved.

Thank you.
Known and reported issue - closing the ticket as it is a duplicate.

Mar 18 2025, 10:46 AM · DayZ
Geez closed T190126: Wooden ladders play sounds from metal ones (like hunting Towers) as Resolved.

Thank you for the report.
This is known and previously reported issue. Closing the ticket as it is a duplicate.

Mar 18 2025, 10:46 AM · DayZ
Geez changed the status of T190128: ammo stacking from New to Feedback.
Mar 18 2025, 10:45 AM · DayZ
Geez changed the status of T190146: Vehicles and boat decay from New to Feedback.
Mar 18 2025, 10:38 AM · DayZ
fraky updated subscribers of T189830: Muzzle error crashing server.

Hi,
any idea how to solve it? I made a new server without Expansion mod, because I assumed that the problem was there. But apparently it wasn't, only when using Expansion mod the server crashed when an error occurred with muzzle index. I tested the server myself for three days with about KA-101 weapons, ACC Honey badger from SNAFU mod. The problem didn't appear for me. Yesterday other players joined and the problem is back. The server doesn't crash, but the error message is displayed:

Mar 18 2025, 9:35 AM · DayZ
c4kvwbfb added a comment to T190066: Player Footsteps.

I agree, the footsteps sound insanely loud now. I feel as though someone is right beside me only to realise they are 15-25 meters away.

Mar 18 2025, 8:50 AM · DayZ
c4kvwbfb added a comment to T190128: ammo stacking.

It would be nice to have ammo always automatically stacked. When unloading a magazine, the ammo should go to an existing stack if it exists. Same for picking up ammo in the world.

Mar 18 2025, 8:48 AM · DayZ