barrows plugin: add barrows chest price evaluator

This commit is contained in:
trimbe
2018-05-05 15:44:51 -04:00
committed by Adam
parent 5f74f1a843
commit 5b13698079
5 changed files with 124 additions and 4 deletions

View File

@@ -29,7 +29,8 @@ public enum InventoryID
INVENTORY(93),
EQUIPMENT(94),
BANK(95),
PUZZLE_BOX(140);
PUZZLE_BOX(140),
BARROWS_REWARD(141);
private final int id;

View File

@@ -422,5 +422,6 @@ public class WidgetID
{
static final int BARROWS_BROTHERS = 8;
static final int BARROWS_POTENTIAL = 9;
static final int BARROWS_REWARD_INVENTORY = 3;
}
}

View File

@@ -254,7 +254,8 @@ public enum WidgetInfo
BARROWS_INFO(WidgetID.BARROWS_GROUP_ID, 0),
BARROWS_BROTHERS(WidgetID.BARROWS_GROUP_ID, WidgetID.Barrows.BARROWS_BROTHERS),
BARROWS_POTENTIAL(WidgetID.BARROWS_GROUP_ID, WidgetID.Barrows.BARROWS_POTENTIAL);
BARROWS_POTENTIAL(WidgetID.BARROWS_GROUP_ID, WidgetID.Barrows.BARROWS_POTENTIAL),
BARROWS_REWARD_INVENTORY(WidgetID.BARROWS_REWARD_GROUP_ID, WidgetID.Barrows.BARROWS_REWARD_INVENTORY);
private final int groupId;
private final int childId;