- Added a warning when NPC shops sell items for 0z (FREE!)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16147 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
brianluau 2012-05-25 03:46:10 +00:00
parent 42b37233ef
commit 5b89fe9c06

View File

@ -2109,6 +2109,11 @@ static const char* npc_parse_shop(char* w1, char* w2, char* w3, char* w4, const
else value = 0; // Cashshop doesn't have a "buy price" in the item_db
}
if( type == SHOP && id->value_buy == 0 )
{ // NPC selling items for free!
ShowWarning("npc_parse_shop: Item %s [%d] is being sold for FREE in file '%s', line '%d'.\n",
id->name, nameid, filepath, strline(buffer,start-buffer));
}
if( type == SHOP && value*0.75 < id->value_sell*1.24 )
{// Exploit possible: you can buy and sell back with profit
ShowWarning("npc_parse_shop: Item %s [%d] discounted buying price (%d->%d) is less than overcharged selling price (%d->%d) at file '%s', line '%d'.\n",