Solved Write and Read content in a book

Discussion in 'Plugin Development' started by Moon_werewolf, Dec 19, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    Moon_werewolf

    How do I (re)write and read the content in a book?
     
  2. Offline

    skipperguy12

  3. Offline

    fireblast709

    Get the latest Bukkit dev build, and latest CB for your server. Then use ItemMeta.
    Code:java
    1. ItemStack i = new ItemStack(Material.WRITTEN_BOOK, 1);
    2. BookMeta bm = (BookMeta)i.getItemMeta();
    3. bm.setAuthor("Fireblast709");
    4. bm.setTitle("Cooking pork in 50 ways");
    5. ArrayList<String> pages = new ArrayList<String>();
    6. pages.add("With vire");
    7. pages.add("In a furnace");
    8. bm.setPages(pages);
    9. bm.setPage(0, "With fire");
    10. i.setItemMeta(bm);
     
Thread Status:
Not open for further replies.

Share This Page