Removed usage of predetermined GE prices
This commit is contained in:
@@ -131,15 +131,11 @@ class GrandExchange : StartupListener, Commands {
|
|||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun getRecommendedPrice(itemID: Int, from_bot: Boolean = false): Int {
|
fun getRecommendedPrice(itemID: Int, from_bot: Boolean = false): Int {
|
||||||
var base = max(PriceIndex.getValue(itemID), getItemDefPrice(itemID))
|
var base = PriceIndex.getValue(itemID)
|
||||||
if (from_bot) base = (max(BotPrices.getPrice(itemID), base) * 1.10).toInt()
|
if (from_bot) base = (max(BotPrices.getPrice(itemID), base) * 1.10).toInt()
|
||||||
return base
|
return base
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getItemDefPrice(itemID: Int): Int {
|
|
||||||
return max(itemDefinition(itemID).getConfiguration(ItemConfigParser.GE_PRICE) ?: 0, itemDefinition(itemID).value)
|
|
||||||
}
|
|
||||||
|
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun getOfferStats(itemID: Int, sale: Boolean) : String
|
fun getOfferStats(itemID: Int, sale: Boolean) : String
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user