I'm having an error that I can't quite fix: Some help would be nice. Code:java package me.TheRedHeadHD.FactionsPlus.Utilities; import org.bukkit.Bukkit;import org.bukkit.ChatColor;import org.bukkit.Material;import org.bukkit.inventory.ItemStack;import org.bukkit.inventory.ShapelessRecipe;import org.bukkit.inventory.meta.ItemMeta;import org.bukkit.material.MaterialData; public class CreeperArrows{public static ItemStack creeperarrow;public static ItemStack creeperegg; public static void createCreeperArrow(){creeperarrow = new ItemStack(Material.ARROW);ItemMeta creeperarrowmeta = creeperarrow.getItemMeta();creeperarrowmeta.setDisplayName(ChatColor.DARK_GREEN + "Creeper Arrow");creeperarrow.setItemMeta(creeperarrowmeta); creeperegg = new ItemStack(Material.MONSTER_EGG,1,(short)50); ShapelessRecipe caRecipe = new ShapelessRecipe(creeperarrow);caRecipe.addIngredient(1, Material.ARROW);caRecipe.addIngredient(1, creeperegg);Bukkit.getServer().addRecipe(caRecipe);}} The error comes in line 27 under the addIngredient method saying: "The method addIngredient(int, MaterialData) in the type ShapelessRecipe is not applicable for the arguments (int, ItemStack)"
You already posted this. http://forums.bukkit.org/threads/problem-with-shapeless-recipe.280984/ The error is obvious enough, addingridient needs itemstack, not material. If you don't understand this error, you will need to learn Java first.