Jump to content

Recommended Posts

Hello , 

 

i'd like to know where should i look or wheres the code related to moving items from special inventory to normal one

 

https://metin2.download/picture/m9yTIv6i3WDFn6Vpy6SQkgW2cT2T7wuo/.gif

 

Thank you 

Edited by Metin2 Dev
Core X - External 2 Internal
  • Metin2 Dev 1
Link to comment
https://metin2.dev/topic/30096-special-inventory-edit/
Share on other sites

char_item.cpp comment this one:

Spoiler
#ifdef ENABLE_SPLIT_INVENTORY_SYSTEM
	if (Cell.IsSkillBookInventoryPosition() && !DestCell.IsSkillBookInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsUpgradeItemsInventoryPosition() && !DestCell.IsUpgradeItemsInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsStoneInventoryPosition() && !DestCell.IsStoneInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsBoxInventoryPosition() && !DestCell.IsBoxInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsEfsunInventoryPosition() && !DestCell.IsEfsunInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsCicekInventoryPosition() && !DestCell.IsCicekInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsEquipPosition() && DestCell.IsSkillBookInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsEquipPosition() && DestCell.IsUpgradeItemsInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsEquipPosition() && DestCell.IsStoneInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsEquipPosition() && DestCell.IsBoxInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsEquipPosition() && DestCell.IsEfsunInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
	if (Cell.IsEquipPosition() && DestCell.IsCicekInventoryPosition())
	{
		ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Cannot move item this window."));
		return false;
	}
#endif

 

Spoiler
#ifdef ENABLE_SPLIT_INVENTORY_SYSTEM
	if (INVENTORY == Cell.window_type && Cell.cell >= INVENTORY_AND_EQUIP_SLOT_MAX && IS_SET(item->GetFlag(), ITEM_FLAG_IRREMOVABLE))
		return false;
#else

 

for me works

spacer.png

Edited by Metin2 Dev
Core X - External 2 Internal
  • Metin2 Dev 2
  • Love 1
Link to comment
https://metin2.dev/topic/30096-special-inventory-edit/#findComment-153912
Share on other sites

  • 1 year later...
  • 2 months later...

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.