Code:
public static void note(RSFont[] tda) {
RSInterface tab = addTabInterface(173);
addSprite(17351, 0, "Interfaces/Notes/NOTE");
addHoverButton(17352, "Interfaces/Notes/NOTE", 1, 200, 30, "Add note", -1, 17353, 1);
addHoveredButton(17353, "Interfaces/Notes/NOTE", 2, 200, 30, 17354);
addHoverButton(17355, "Interfaces/Notes/NOTE", 3, 200, 30, "Delete all", -1, 17356, 1);
addHoveredButton(17356, "Interfaces/Notes/NOTE", 4, 200, 30, 17357);
addText(13800, "No notes", tda, 0, 0xffffff, false, true);
//addText(17820, "Notes", tda, 1, 0xFF981F, true, false);
//addText(17822, "Delete", tda, 1, 0xFF981F, true, false);
addText(17823, "", tda, 0, 0xff981f, false, true);
addText(17824, "", tda, 0, 0xff981f, false, true);
tab.totalChildren(6);
tab.child(0, 17351, 0, 0);
tab.child(1, 17352, 8, 2);
tab.child(2, 17353, 8, 2);
tab.child(3, 17355, 165, 237);
tab.child(4, 17356, 165, 237);
tab.child(5, 13800, 68, 78);
//tab.child(6, 17820, 92, 8);
//tab.child(7, 17822, 94, 231);
tab = addTabInterface(14000);
tab.width = 474;
tab.height = 213;
tab.scrollMax = 305;
for(int i = 14001; i <= 14030; i++){
addText(i, "", tda, 1, 0xffffff, false, true);
}
tab.totalChildren(30);
int Child = 0;
int Y = 5;
for(int i = 14001; i <= 14030; i++){
tab.child(Child, i, 248, Y);
Child++;
Y += 13;
}
}