Exclude Price Range from eBay
From FillZ
|
This script will exclude items outside min $50 and max $200 price range from eBay. For example, if the price of an item is $10, it will not be listed on eBay.
if( marketplace == 'EBay' )
{
min = 50;
max = 200;
if( item.basePrice < min || item.basePrice > max ) return 0;
}
if( marketplace == 'EBay' )
{
min = 50;
max = 200;
if( item.basePrice > min && item.basePrice < max ) return 0;
}
|

