Match Lowest Price Without Dropping
From MediaSell
|
This script will change your price to match the lowest price on Amazon.com in SAME OR BETTER CONDITION with a $1.00 price floor, without dropping below the current price: (Replace A00000000000 with your Amazon ID.) myAmzID = "A00000000000";
price = item.basePrice;
priceFloor = 1.00;
lowPrice = 0;
priceList = getPrices('sameOrBetter');
if (priceList) {
for (pind=0; pind < priceList.length; pind++) {
if (priceList[pind].sellerid == myAmzID) continue;
lowPrice = priceList[pind].price;
break;
}
}
if (lowPrice > 0) price = lowPrice;
if (price < priceFloor) price = priceFloor;
if (price < item.oldPrice) price = item.oldPrice;
return price;
(Replace A00000000000 with your Amazon ID.) myAmzID = "A00000000000";
price = item.basePrice;
priceFloor = 1.00;
lowPrice = 0;
priceList = getPrices(item.condition);
if (priceList) {
for (pind=0; pind < priceList.length; pind++) {
if (priceList[pind].sellerid == myAmzID) continue;
lowPrice = priceList[pind].price;
break;
}
}
if (lowPrice > 0) price = lowPrice;
if (price < priceFloor) price = priceFloor;
if (price < item.oldPrice) price = item.oldPrice;
return price;
(Replace A00000000000 with your Amazon ID.) myAmzID = "A00000000000";
price = item.basePrice;
priceFloor = 1.00;
lowPrice = 0;
priceList = getPrices('all');
if (priceList) {
for (pind=0; pind < priceList.length; pind++) {
if (priceList[pind].sellerid == myAmzID) continue;
lowPrice = priceList[pind].price;
break;
}
}
if (lowPrice > 0) price = lowPrice;
if (price < priceFloor) price = priceFloor;
if (price < item.oldPrice) price = item.oldPrice;
return price;
|

