Use this:
if (script.colorPicker.isColorAt(505, 390, new Color(174, 160, 131))) {
script.keyboard.typeString("" + 99);
}
Checks if you are able to input text, Uses a color to determine if scrollbar is gone.
For the "Use" thing:
This is what i use:
public static void useItemOnItem(String name1, String name2, Script script) {
if (script.widgets.getInventory().getSelectedItemName() != null && script.widgets.getInventory().getSelectedItemName().equals(name1)) {
Item item = script.widgets.getInventory().getItem(name2);
if (item != null)
item.interact("Use");
} else {
Item item = script.widgets.getInventory().getItem(name1);
if (item != null)
item.interact("Use");
}
}
Hope this helped!
Khaleesi