Buying store failure

thor1009

New member
Messages
42
Points
0
I have added some custom currency (item ID 8900) in my server.

However, after adding this item in data/buyingstoreitemlist.txt, I can select the item for buying, but add the item will result in a skill failure.

rathena seems have a item_buyingstore.txt on server side, but I did not find any thing about the buyingstore items in Hercules db.

What should I do on the server side to enable the custom items on buying store?

 
check your item_db.conf and add the config to the items

BuyingStore: true/false       (boolean, defaults to false)

example :

Code:
{	Id: 506	AegisName: "Green_Potion"	Name: "Green Potion"	Type: 0	Buy: 40	Weight: 70	BuyingStore: true	Script: <"		sc_end SC_POISON;		sc_end SC_SILENCE;		sc_end SC_BLIND;		sc_end SC_CONFUSION;		sc_end SC_ILLUSION;	">},
 
Last edited by a moderator:
Back
Top