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?
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?
Probably your itemsDB or your Items_Gear is wrong.
The category of the item cannot be: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;
it must be category 12storecat_Account = 1,
storecat_Boost = 2,
storecat_LootBox = 7,
storecat_HeroPackage = 16,