Can someone give me the interface to open the Crafting to see what to make:
What's wrong with this?
Code:
private static void dragonHide(Client c, int[] items, int type) {
	c.getPA().showInterface(416);
	c.getPA().sendFrame164(8880);
	c.getPA().sendFrame126("What would you like to make?", 8879);
	c.getPA().sendFrame246(8884, 200, items[0]);
	c.getPA().sendFrame246(8883, 200, items[1]);
	c.getPA().sendFrame246(8885, 180, items[2]);
	c.getPA().sendFrame126(""+c.getItems().getItemName(items[1])+"", 8889); 
	c.getPA().sendFrame126(""+c.getItems().getItemName(items[0])+"", 8893);
	c.getPA().sendFrame126(""+c.getItems().getItemName(items[2])+"", 8897);
	c.leatherType = type;
}