Jump to content

Special inventory edit


Recommended Posts

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 1
  • Love 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

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.