Vinetos

CREER UN PLUGIN BUKKIT #19 - Nouveaux Crafts !

Mar 12th, 2015
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. package ep19;
  2.  
  3. import org.bukkit.Bukkit;
  4. import org.bukkit.Material;
  5. import org.bukkit.inventory.ItemStack;
  6. import org.bukkit.inventory.ShapedRecipe;
  7. import org.bukkit.plugin.java.JavaPlugin;
  8.  
  9. public class Main extends JavaPlugin{
  10.  
  11.  
  12. public void onEnable() {
  13. ShapedRecipe sh = new ShapedRecipe(new ItemStack(Material.ARMOR_STAND));
  14. sh.shape(new String[]{ "SSS" ,
  15. "SPS" ,
  16. "SSS"}).setIngredient('S', Material.SLIME_BLOCK).setIngredient('P', Material.PRISMARINE);
  17.  
  18.  
  19. Bukkit.addRecipe(sh);
  20. }
  21.  
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment