First time i'm having a server crash with this stack trace, thought i'd share it.
Description
Description
Details
Details
- Severity
- Crash
- Resolution
- Open
- Reproducibility
- Random
- Operating System
- Windows 7
- Category
- General
Steps To Reproduce
Unsure how to replicate.
Crashlog
Mdmp
Event Timeline
Comment Actions
This may be related to some code me and SFM recently added to our servers, I found that running Delete() for an item in hand then immediately running ServerTakeEntityToHands() for an item on the floor would consistantly fail to take the item into hands and nothing would happen, so instead I had to call the ServerTakeEntityToHands later like this GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(TakeNewWeaponToHands, 34, false, action_data, G); but possibly in some cases DayZ still has issues knowing if the hand is free or not and it could potentially cause this?
This is a cut down version of the action we are using:
class TL_OpenWeaponCaseCB : ActionContinuousBaseCB // CB { override void CreateActionComponent() { m_ActionData.m_ActionComponent = new CAContinuousTime(UATimeSpent.UNPACK); } }; class TL_OpenWeaponCase: ActionContinuousBase // Gun { void TL_OpenWeaponCase() // Gun { m_CallbackClass = TL_OpenWeaponCaseCB; // CB m_CommandUID = DayZPlayerConstants.CMD_ACTIONMOD_OPENITEM; m_StanceMask = DayZPlayerConstants.STANCEMASK_ERECT | DayZPlayerConstants.STANCEMASK_CROUCH; m_SpecialtyWeight = UASoftSkillsWeight.ROUGH_LOW; m_Text = "Open Case"; } override void CreateConditionComponents() { m_ConditionItem = new CCINonRuined; m_ConditionTarget = new CCTSelf; } override bool HasTarget() { return false; } override bool ActionCondition( PlayerBase player, ActionTarget target, ItemBase item ) { return true; } override void OnFinishProgressServer(ActionData action_data) { EntityAI G = EntityAI.Cast(GetGame().CreateObjectEx( "M4A1", action_data.m_Player.GetPosition(), ECE_PLACE_ON_SURFACE )); action_data.m_MainItem.Delete(); //action_data.m_Player.ServerTakeEntityToHands(G); GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(TakeNewWeaponToHands, 34, false, action_data, G); } void TakeNewWeaponToHands(ActionData action_data, EntityAI G) { action_data.m_Player.ServerTakeEntityToHands(G); } }
Thank you for your time.