Jump to content

How To Fix Belt Inventory Bug 3


Rideas

Recommended Posts

İs bug : https://www.youtube.com/watch?v=ZmgEDKdDono&feature=youtu.b



Fix : 

open char_item.cpp

Search:

 

bool CHARACTER::EquipItem(LPITEM item, int iCandidateCell)
{


Add:

 

	if (ITEM_BELT == item->GetType() && CBeltInventoryHelper::IsExistItemInBeltInventory(this))
	{
      ChatPacket(CHAT_TYPE_INFO, "Empty your belt inventory !");
      return false;
  }

 

  • Love 4
Link to comment
Share on other sites

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.