Page MenuHomeFeedback Tracker

OGskystrider (Hunter Thornton)
User

Projects

User does not belong to any projects.

User Details

User Since
Jun 11 2022, 3:21 AM (132 w, 6 d)

Recent Activity

Tue, Dec 10

OGskystrider added a comment to T181572: Server crashes since 1.25 (Access violation).

could everyone share their modlist or ip/port so we can check. I noticed in the above mod list these similarities

drippysneakers
fliptransport
rag hunting cabin
cannabis plus
drugs plus
DNA Keycards
DayZ Editor Loader
Snafu Weapons
Gamelabs
Code Lock
BaseBuildingPlus
gebsfish
SpawnerBubaku
CZ No Fly Zones

Tue, Dec 10, 3:20 AM · DayZ

Jun 11 2022

OGskystrider added a comment to T159815: Handling of casts, error in CalculateVisibilityForAI.

Hopefully this gets addressed but, in the meanwhile, I've created this script snippet to identify modded clothing items that may generate the error:

int count = GetGame().ConfigGetChildrenCount("CfgVehicles");
string child;
 
PrintFormat("Checking %1 types", count);
for (int i = 0; i < count; ++i)
{
    if (!GetGame().ConfigGetChildName("CfgVehicles", i, child))
    {
        continue;
    }
 
    if (GetGame().ConfigGetInt(string.Format("CfgVehicles %1 scope", child)) != 2)
    {
        continue;
    }
 
    Object obj = GetGame().CreateObject(child, "0 0 0");
    if (obj && obj.IsClothing() && Clothing.Cast(obj) == null)
    {
        PrintFormat("Bad clothing type: %1", child);
    }
    GetGame().ObjectDelete(obj);
}
Print("Done checking types");
Jun 11 2022, 3:23 AM · DayZ Modding, DayZ