Page MenuHomeFeedback Tracker

gamerz971
User

Projects

User does not belong to any projects.

User Details

User Since
Mar 22 2025, 9:08 PM (10 w, 4 d)

Recent Activity

Yesterday

gamerz971 added a comment to T192335: [SERVER CRASH] Access violation. Illegal read by 0x7ff61be54d32 at 0x178.

Hello.
This seems to be related to car cutting tree script that has been described bellow:

Hello, in the experimental version of the game (1.28), one of the vehicle-based tree-cutting scripts has started causing server crashes. It works fine in version 1.27.

override void OnContact( string zoneName, vector localPos, IEntity other, Contact data )
{

if ( EngineIsOn() && (data.Impulse > 2000 || GetSpeedometer() > 10))
 {
    Object tree = Object.Cast( other );
        if (tree.IsTree())
        {
            if ( tree.IsCuttable() /* || tree.IsBush() */ )
            {
                Class treeType = NULL;
                if ( tree.IsInherited(TreeHard) )
                {
                    treeType = TreeHard.Cast( tree );
                }
                else if ( tree.IsInherited(TreeSoft) )
                {
                    treeType = TreeSoft.Cast( tree );
                }
                if ( treeType )
                {
                    tree.DecreaseHealth("", "", 100, true);
                    tree.OnTreeCutDown( this ); //RPC Send
                    dBodyDestroy(tree);
                }
                data.Impulse = data.Impulse * 0.01;
            }
        }
}
super.OnContact(zoneName, localPos, other, data);

}

If I remove these lines: tree.DecreaseHealth("", "", 100, true); and dBodyDestroy(tree);, the script works, but the tree does not fall, as expected.
Regards,

This is not a vanilla behaviour but we are looking into it.
Geez

Wed, Jun 4, 11:30 PM · DayZ Modding, DayZ
gamerz971 added a comment to T192335: [SERVER CRASH] Access violation. Illegal read by 0x7ff61be54d32 at 0x178.

Wed, Jun 4, 3:48 AM · DayZ Modding, DayZ
gamerz971 added a comment to T192335: [SERVER CRASH] Access violation. Illegal read by 0x7ff61be54d32 at 0x178.

Same error, higher pop server.

Wed, Jun 4, 1:28 AM · DayZ Modding, DayZ

Mar 28 2025

gamerz971 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 28 2025, 6:45 AM · DayZ

Mar 25 2025

gamerz971 added a comment to T189923: SaveCurrentFSMState Crash.

What more info is needed so this can be looked at and addressed?

Mar 25 2025, 12:12 AM · DayZ

Mar 22 2025

gamerz971 added a comment to T189923: SaveCurrentFSMState Crash.

Having the same issue since 1.27 hotfix update{F5114147}

Mar 22 2025, 9:11 PM · DayZ