Jump to content

Fix Change Equipment with Full Inventory


Recommended Posts

Hi!

 

I don't know if it is a perfect solution, but it works fine for me.

 

Open game/char_item.cpp and find this:

if (false == CanUnequipNow(item2) || false == CanEquipNow(item1))

Replace to this:

		//if (false == CanUnequipNow(item2) || false == CanEquipNow(item1))
		if (false == CanEquipNow(item1))
			return false;
		if (item2->IsDragonSoul() && false == CanUnequipNow(item2))
			return false;

Then compile and run...

  • Love 21
Link to comment
https://metin2.dev/topic/1849-fix-change-equipment-with-full-inventory/
Share on other sites

  • 4 months later...
  • 9 years later...

Open game/char_item.cpp and find this:

if (false == CanUnequipNow(item2) || false == CanEquipNow(item1))

Replace to this:

        if (item2->IsDragonSoul() || item2->GetType() == ITEM_BELT)
        {
            if (false == CanUnequipNow(item2) || false == CanEquipNow(item1))
                return false;
        }

#Fix

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • 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.