Add precise combat level plugin
This commit is contained in:
@@ -42,6 +42,7 @@ class WidgetID
|
||||
static final int PRAYER_GROUP_ID = 541;
|
||||
static final int SHOP_GROUP_ID = 300;
|
||||
static final int SHOP_INVENTORY_GROUP_ID = 301;
|
||||
static final int COMBAT_GROUP_ID = 593;
|
||||
|
||||
static class PestControl
|
||||
{
|
||||
@@ -152,4 +153,10 @@ class WidgetID
|
||||
static final int RIGOUR = 30;
|
||||
static final int AUGURY = 31;
|
||||
}
|
||||
|
||||
static class Combat
|
||||
{
|
||||
static final int WEAPON_NAME = 1;
|
||||
static final int LEVEL = 2;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -79,7 +79,9 @@ public enum WidgetInfo
|
||||
RESIZABLE_VIEWPORT_BOTTOM_LINE(WidgetID.RESIZABLE_VIEWPORT_BOTTOM_LINE_GROUP_ID, WidgetID.Viewport.RESIZABLE_VIEWPORT_BOTTOM_LINE),
|
||||
|
||||
PRAYER_PROTECT_FROM_MAGIC(WidgetID.PRAYER_GROUP_ID, WidgetID.Prayer.PROTECT_FROM_MAGIC),
|
||||
PRAYER_PROTECT_FROM_MISSILES(WidgetID.PRAYER_GROUP_ID, WidgetID.Prayer.PROTECT_FROM_MISSILES);
|
||||
PRAYER_PROTECT_FROM_MISSILES(WidgetID.PRAYER_GROUP_ID, WidgetID.Prayer.PROTECT_FROM_MISSILES),
|
||||
|
||||
COMBAT_LEVEL(WidgetID.COMBAT_GROUP_ID, WidgetID.Combat.LEVEL);
|
||||
|
||||
|
||||
private final int groupId;
|
||||
|
||||
Reference in New Issue
Block a user