Thread: Love help adding something!

Results 1 to 2 of 2
  1. #1 Love help adding something! 
    Registered Member Chr0nicxHack3r's Avatar
    Join Date
    Mar 2015
    Posts
    64
    Thanks given
    1
    Thanks received
    1
    Rep Power
    11
    I would absolutely love it if someone could help me add some books that are readable in my server that list the commands per the role you have on the server, also adding something like a rule book. If anyone could help me I love working over discord as its easier to chat on!
    Reply With Quote  
     

  2. #2  
    Retired From RSPS

    iGarrett's Avatar
    Join Date
    Dec 2013
    Posts
    461
    Thanks given
    144
    Thanks received
    110
    Rep Power
    187
    This is extremely easy to do.

    Find a book id any book would do, then look for an interface list that matches your revision. The interface should show up as 'Page', or 'Book', All you need to do is in your ClickItem() method add in the book id under that add the command to open the interface.

    Example from my server:
    Code:
    firstClickItem() {
    Interface.ExampleBook();
    }
    Now you would like to open the interface and add text. Well here's an example from my base:
    Code:
    public void ExampleBook() {
      open(INTERFACE_ID);
           sendString(stringId, "TITLE");
           sendString(stringId, "This is your text.");
    }
    You can also use the same interface and the same string id's for pages and other books too.

    Would be like:
    Code:
    public void ExampleBook2() {
      open(INTERFACE_ID);
           sendString(stringId, "TITLE");
           sendString(stringId, "This is your text.");
    }
    ExampleBook2 is a second instance of this interface and will come out completely clean ready for you to use as another page or book!
    Quote Originally Posted by i am here View Post
    I have never messed with Eclipse. Is it a whole new revision or type of code?
    Quote Originally Posted by bibl View Post
    hahaha, good one m9. "deob" is short for "deobfuscated" which is not the same as decompiled.
    I'm GEEGIN' OUT
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 3
    Last Post: 01-01-2013, 08:44 PM
  2. Replies: 0
    Last Post: 04-10-2012, 07:27 AM
  3. (pi) Help adding Something to quick prayers
    By garrydowling2011 in forum Help
    Replies: 0
    Last Post: 02-28-2012, 04:25 PM
  4. Replies: 0
    Last Post: 02-17-2010, 12:33 AM
  5. I need help with adding something
    By Sunny97 in forum Help
    Replies: 3
    Last Post: 03-16-2009, 05:50 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •