Page MenuHomeFeedback Tracker

SirAdef
User

Projects

User does not belong to any projects.

User Details

User Since
Mar 9 2025, 8:59 PM (5 w, 3 d)

Recent Activity

Tue, Mar 25

SirAdef added a comment to T190201: FileSerializer - FileMode.APPEND without function since 1.27.

Server running all night no problems... Next days will show if it really is stable enough.

Tue, Mar 25, 7:48 AM · DayZ

Mon, Mar 24

SirAdef added a comment to T190201: FileSerializer - FileMode.APPEND without function since 1.27.

https://github.com/bzed/dayz-append-fix/ - here is a workaround until its fixed properly.

Mon, Mar 24, 9:33 PM · DayZ
SirAdef added a comment to T189830: Muzzle error crashing server.

Any news on issue beeing fixed?

Mon, Mar 24, 11:30 AM · DayZ

Wed, Mar 19

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...

Wed, Mar 19, 5:43 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.

Wed, Mar 19, 5:10 PM · DayZ

Mar 13 2025

SirAdef added a comment to T189830: Muzzle error crashing server.

There's something messed up with:

Mar 13 2025, 2:09 PM · DayZ

Mar 10 2025

SirAdef added a comment to T189830: Muzzle error crashing server.

Thank you, was the server wiped with the 1.27 release? And are you running any mods?

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

Last mdmp and crashlogs from server

Mar 10 2025, 12:45 PM · DayZ

Mar 9 2025

SirAdef created T189830: Muzzle error crashing server.
Mar 9 2025, 9:07 PM · DayZ