Metin2 Special inventory refine.

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Capturre

Member
Joined
Dec 29, 2019
Messages
99
Credits
0
Hello users!


Much server use the special storage. Maybe you too!
If you have stone inventar in the storage, and maybe your stones can be upgrade heres one fix for you!

Try upgrade the item and does not work? Do not open the upgrade window?

char_item.cpp
Search function : bool CHARACTER::RefineInformation(UINT bCell, BYTE bType, int iAdditionalCell)
Search in function :

if (bCell > INVENTORY_MAX_NUM)
return false;

Changes


#ifdef __SPECIAL_INVENTORY_SYSTEM__
if (bCell > YOUR_LAST_INVENTORY_NAME_END)
return false;
#else
if (bCell > INVENTORY_MAX_NUM)
return false;
#endif

Complie and should work.
Good luck.
Edmund.
 
Hello users!


Much server use the special storage. Maybe you too!
If you have stone inventar in the storage, and maybe your stones can be upgrade heres one fix for you!

Try upgrade the item and does not work? Do not open the upgrade window?

char_item.cpp
Search function : bool CHARACTER::RefineInformation(UINT bCell, BYTE bType, int iAdditionalCell)
Search in function :

if (bCell > INVENTORY_MAX_NUM)
return false;

Changes


#ifdef __SPECIAL_INVENTORY_SYSTEM__
if (bCell > YOUR_LAST_INVENTORY_NAME_END)
return false;
#else
if (bCell > INVENTORY_MAX_NUM)
return false;
#endif

Complie and should work.
Good luck.
Edmund.

is not working
YOUR_LAST_INVENTORY_NAME_END = what is this ??
you meant Stone _Inventory_Slot _End?
 
is not working
YOUR_LAST_INVENTORY_NAME_END = what is this ??
you meant Stone _Inventory_Slot _End?
Yes, it is incomplete.
I think the python part is missing, in this way it will only make you move the stones and open the refine but it will not make you upload.
 
Back
Top