Add ClanChat plugin

This commit is contained in:
Devin French
2017-05-04 04:22:27 -07:00
committed by Adam
parent a22b8384f9
commit 939ce237a1
8 changed files with 99 additions and 1 deletions

View File

@@ -325,4 +325,9 @@ public class Client
{
return getSetting(prayer.getVarbit()) == 1;
}
public int getClanChatCount()
{
return client.getClanChatCount();
}
}

View File

@@ -112,6 +112,11 @@ public class Widget
return widget.getText();
}
public void setText(String text)
{
widget.setText(text);
}
public int getTextColor()
{
return widget.getTextColor();

View File

@@ -30,6 +30,8 @@ class WidgetID
static final int PESTRCONTROL_GROUP_ID = 408;
static final int CLAN_CHAT_GROUP_ID = 7;
static class PestControl
{
static final int PURPLE_SHIELD = 18;
@@ -47,4 +49,11 @@ class WidgetID
static final int YELLOW_ICON = 12;
static final int RED_ICON = 13;
}
static class ClanChat
{
static final int TITLE = 1;
static final int NAME = 3;
static final int OWNER = 5;
}
}

View File

@@ -39,7 +39,11 @@ public enum WidgetInfo
PESTCONTROL_PURPLE_ICON(WidgetID.PESTRCONTROL_GROUP_ID, WidgetID.PestControl.PURPLE_ICON),
PESTCONTROL_BLUE_ICON(WidgetID.PESTRCONTROL_GROUP_ID, WidgetID.PestControl.BLUE_ICON),
PESTCONTROL_YELLOW_ICON(WidgetID.PESTRCONTROL_GROUP_ID, WidgetID.PestControl.YELLOW_ICON),
PESTCONTROL_RED_ICON(WidgetID.PESTRCONTROL_GROUP_ID, WidgetID.PestControl.RED_ICON);
PESTCONTROL_RED_ICON(WidgetID.PESTRCONTROL_GROUP_ID, WidgetID.PestControl.RED_ICON),
CLAN_CHAT_TITLE(WidgetID.CLAN_CHAT_GROUP_ID, WidgetID.ClanChat.TITLE),
CLAN_CHAT_NAME(WidgetID.CLAN_CHAT_GROUP_ID, WidgetID.ClanChat.NAME),
CLAN_CHAT_OWNER(WidgetID.CLAN_CHAT_GROUP_ID, WidgetID.ClanChat.OWNER);
private final int groupId;
private final int childId;