Question concerning Bukkit API

Discussion in 'Plugin Development' started by Greennose120, Jun 15, 2013.

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

    Greennose120

    While searching in the API I found several Methods about which I dont know what they actually do.
    For example what does this method?
    Code:java
    1. CraftWorld w;
    2. w.getHandle().b(EnumSkyBlock, int, int, int, int);

    Are there any javadocs which explain what these methods (b(...)) do?
     
    declanmc96 likes this.
  2. Offline

    Deckerz

    That's NMS code not bukkit API
     
  3. Offline

    Greennose120

    Where can I look this NMS code up?
     
  4. Offline

    Hoolean

    Greennose120

    Quite simply, you can't (or it is extremely hard and time consuming).

    Unless you really need to, stick with the Bukkit API. What do you need to do? :)
     
    Minnymin3 likes this.
  5. If your asking that question, you don't look it up, you don't use it.

    NMS and OBC (the shorthand for Vanilla Minecraft server code and CraftBukkit implementation code respectively) are the meat and guts, NOT the bukkit API, they can and do change between versions of minecraft and bukkit builds (due to obfuscation of minecraft, or a change in how the craftbukkit implementation handles something).
     
  6. Offline

    Minnymin3

    NMS is that code thats names have nothing to do with their uses such as _m should be getUser and b is something like set generator (not to sure bout that though)
     
  7. Offline

    Greennose120

    Thank you all, I wanted to light up thge world initially....
     
Thread Status:
Not open for further replies.

Share This Page