Is there a way to get a list of things available when making a plugin?

Discussion in 'Plugin Development' started by osswold00123, Nov 20, 2014.

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

    osswold00123

    Hey,
    the title may sound a bit confusing but I'm trying to make a plugin and I'd like to know all the things I can do. I'll make an example below.

    Code:java
    1. if(cmd.getName().equalsIgnoreCase("thanksforanyresponcesbukkitforums!")){
    2. player.getEXPLevel();
    3. player.


    Could anyone list all the things I can put after the player.'s or link me to somewhere I can find out. Sorry if that wasn't made clear by the title :)
     
  2. Offline

    mine-care

  3. Offline

    Rocoty

    You're probably looking for documentation, commonly referred to as API docs. Here: http://jd.bukkit.org/

    EDIT: Thanks. Nothing wraps up the day like a good ol'-fashioned ninja :p mine-care
     
    mine-care likes this.
  4. Offline

    Janmm14

    Option 1: Javadocs: http://jd.bukkit.org
    Option 2: Use eclipse / NetBeans / Intellij IDEA as IDE. They provide code completion. Maybe use youtube to get a tutorial for setup. or do ctrl+space if youalready use a java ide.
     
  5. Offline

    mine-care

    Rocoty oh sorry I know it is really annoying when someone posts a split second before you :3 but there I not much I can do to prevent it :-(
    xD thanks for the ninja btw
     
    Rocoty likes this.
  6. Offline

    osswold00123

    Thanks all! :D
     
Thread Status:
Not open for further replies.

Share This Page