Jump to content

Recommended Posts

17 minutes ago, iFreakTime~.~ said:

Hi all. I have a problem with Stones. I put three stones on a weapon, good, I equip weapon, good here.

But, I use the removal stone scroll, stone disappear and bonus is still here. Now, I need a restriction to remove stones when armor/weapon is equipped.

Search char_item.cpp

case USE_DETACHMENT:
{
	LPITEM item2;

Under you will find

if(item2->IsExchanging())
{
	return false;
}

Add under

if(item2->IsEquipped())
{
	return false;
}

 

  • 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.