[HELP] Game crashes when you change or drop backpack

Results 1 to 2 of 2
  1. #1
    Apprentice Matt1tg is offline
    MemberRank
    Jul 2014 Join Date
    6Posts

    [HELP] Game crashes when you change or drop backpack

    Hello everybody. I got the following error:


    This error happens when I drop a backpack or change, the game closes, this message appears and give that message appears CRASH REPORT
    Can anyone help?


  2. #2
    Custom Title Enabled GigaToni is offline
    MemberRank
    Aug 2009 Join Date
    GER / FRLocation
    2,329Posts

    Re: [HELP] Game crashes when you change or drop backpack

    Probably your itemsDB or your Items_Gear is wrong.
    Code:
    const ModelItemConfig* cfg = (const ModelItemConfig*)g_pWeaponArmory->getConfig(m_Item.itemID);
    		switch(cfg->category)
    		{
    			case storecat_Account:
    			case storecat_Boost:
    			case storecat_LootBox:
    			case storecat_HeroPackage:
    				r3dError("spawned item is not model");
    				break;
    		}
    		cpMeshName = cfg->m_ModelPath;
    The category of the item cannot be:
    storecat_Account = 1,
    storecat_Boost = 2,
    storecat_LootBox = 7,
    storecat_HeroPackage = 16,
    it must be category 12



Advertisement