Jump to content

How To Fix Belt Inventory Bug 1


Rideas

Recommended Posts

Is Bug : https://www.youtube.com/watch?v=gOprjTnNiQ8

Open : input_main.cpp




Search:
 

	CSafebox * pkSafebox = ch->GetSafebox();
	LPITEM pkItem = ch->GetItem(p->ItemPos);

	if (!pkSafebox || !pkItem)
		return;


Add:

 

    if (pkItem->GetType() == ITEM_BELT && pkItem->IsEquipped()) // Belt inventory new bug fixed by Rideas
{

ch->ChatPacket(CHAT_TYPE_INFO, "Belt before equip!");
    return;
}


Best Regards Rideas

Edited by Rideas
  • Love 4
Link to comment
Share on other sites

  • 4 weeks later...

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.