Getting book information

Discussion in 'Plugin Development' started by MCGamerTechz, May 20, 2014.

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

    MCGamerTechz

    I would like to get the book information that is in a players hand, I have this so far:
    Code:java
    1. if(((Player) player).getItemInHand().equals(Material.WRITTEN_BOOK))
    2. {
    3.  
    4. }


    How would I get the information of the book (The book title and the first page)?
     
  2. Offline

    CraftedShack

    Code:java
    1.  
    2. BookMeta book = (BookMeta) item.getItemMeta();
    3. String title = book.getTitle();
    4.  


    This is how you get the title.

    book.getPage(0); to get the page 1
     
  3. Offline

    MCGamerTechz

    THanks
    Thanks for the fast reply!
     
Thread Status:
Not open for further replies.

Share This Page