looking for someone to implement one method for me which is the
Code:
public static void configHoverButton(int id, String tooltip, int sprite2, int sprite1, int enabledAltSprite, int disabledAltSprite, boolean active, int... buttonsToDisable) {
RSInterface tab = addInterface(id);
tab.tooltip = tooltip;
tab.atActionType = OPTION_OK;
tab.type = TYPE_CONFIG_HOVER;
tab.sprite2 = Client.cacheSprite3[sprite2];
tab.sprite1 = Client.cacheSprite3[sprite1];
tab.width = tab.sprite2.myWidth;
tab.height = tab.sprite1.myHeight;
tab.enabledAltSprite = Client.cacheSprite3[enabledAltSprite];
tab.disabledAltSprite = Client.cacheSprite3[disabledAltSprite];
tab.buttonsToDisable = buttonsToDisable;
tab.active = active;
tab.toggled = active;
tab.spriteOpacity = 255;
}
for elvarg.