forked from MagicBane/Server
Potion charges accounted for in price
This commit is contained in:
@@ -109,7 +109,13 @@ public class VendorSellMsgHandler extends AbstractClientMsgHandler {
|
|||||||
|
|
||||||
//apply damaged value reduction
|
//apply damaged value reduction
|
||||||
float damagedModifier = sell.combat_health_current / sell.template.combat_health_full;
|
float damagedModifier = sell.combat_health_current / sell.template.combat_health_full;
|
||||||
|
float chargeModifier = 1.0f;
|
||||||
|
|
||||||
|
if (sell.chargesRemaining != 0)
|
||||||
|
chargeModifier = sell.chargesRemaining * 1.0f / sell.template.item_initial_charges;
|
||||||
|
|
||||||
cost *= damagedModifier;
|
cost *= damagedModifier;
|
||||||
|
cost *= chargeModifier;
|
||||||
|
|
||||||
float bargain = player.getBargain();
|
float bargain = player.getBargain();
|
||||||
float profit = npc.getBuyPercent(player) + bargain;
|
float profit = npc.getBuyPercent(player) + bargain;
|
||||||
|
|||||||
@@ -1388,12 +1388,17 @@ public class CharacterItemManager {
|
|||||||
|
|
||||||
// attempt to transfer item in db
|
// attempt to transfer item in db
|
||||||
|
|
||||||
boolean sdrMerchant = false;
|
boolean eatItem = false;
|
||||||
|
|
||||||
|
// SDR vendors and potions are not resold
|
||||||
|
|
||||||
if (npc.getContractID() >= 1900 && npc.getContractID() <= 1906)
|
if (npc.getContractID() >= 1900 && npc.getContractID() <= 1906)
|
||||||
sdrMerchant = true;
|
eatItem = true;
|
||||||
|
|
||||||
if (sdrMerchant) {
|
if (itemToSell.template.item_type.equals(ItemType.POTION))
|
||||||
|
eatItem = true;
|
||||||
|
|
||||||
|
if (eatItem) {
|
||||||
this.delete(itemToSell);
|
this.delete(itemToSell);
|
||||||
this.updateInventory();
|
this.updateInventory();
|
||||||
|
|
||||||
@@ -1402,13 +1407,13 @@ public class CharacterItemManager {
|
|||||||
|
|
||||||
// skip this check if this is a mobLoot item (which is not in any inventory)
|
// skip this check if this is a mobLoot item (which is not in any inventory)
|
||||||
|
|
||||||
if (!sdrMerchant)
|
if (!eatItem)
|
||||||
if (!removeItemFromInventory(itemToSell))
|
if (!removeItemFromInventory(itemToSell))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// add item to vendor
|
// add item to vendor
|
||||||
|
|
||||||
if (!sdrMerchant)
|
if (!eatItem)
|
||||||
if (!itemMan.addItemToInventory(itemToSell))
|
if (!itemMan.addItemToInventory(itemToSell))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user