How to return block type in a message for Spigot 1.13.2How do I efficiently iterate over each entry in a Java Map?Does a finally block always get executed in Java?How do I call one constructor from another in Java?How do I read / convert an InputStream into a String in Java?How do I generate random integers within a specific range in Java?How can I create an executable JAR with dependencies using Maven?How do I determine whether an array contains a particular value in Java?How do I convert a String to an int in Java?How do I fix android.os.NetworkOnMainThreadException?PrepareItemCraftEvent Issue - Could not pass event PrepareItemCraftEvent

Password maker in c#

Bronze Age Underwater Civilization

How can one write good dialogue in a story without sounding wooden?

Is Arc Length always irrational between two rational points?

Am I testing diodes properly?

Supporting developers who insist on using their pet language

What package provides system call man pages on Ubuntu?

Correct use of ergeben?

How to check the quality of an audio sample?

How did the Game Boy Advance stretch Game Boy games to widescreen?

Mathematical formulation of Support Vector Machines?

Why would guns not work in the dungeon?

What's the minimum number of sensors for a hobby GPS waypoint-following UAV?

Occasus nescius

A DVR algebra with weird automorphisms

Optimising Table wrapping over a Select

Can I call 112 to check a police officer's identity in the Czech Republic?

Would letting a multiclass character rebuild their character to be single-classed be game-breaking?

What is the difference between logical consistency and logical entailment in deductive logic?

How can an advanced civilization forget how to manufacture its technology?

Keep milk (or milk alternative) for a day without a fridge

Is killing off one of my queer characters homophobic?

Can I play a first turn Simic Growth Chamber to have 3 mana available in the second turn?

Why does resistance reduce when a conductive fabric is stretched?



How to return block type in a message for Spigot 1.13.2


How do I efficiently iterate over each entry in a Java Map?Does a finally block always get executed in Java?How do I call one constructor from another in Java?How do I read / convert an InputStream into a String in Java?How do I generate random integers within a specific range in Java?How can I create an executable JAR with dependencies using Maven?How do I determine whether an array contains a particular value in Java?How do I convert a String to an int in Java?How do I fix android.os.NetworkOnMainThreadException?PrepareItemCraftEvent Issue - Could not pass event PrepareItemCraftEvent






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















I'm attempting to get the block type that is right clicked by the player and return it back as a message sent to the player in-game. Currently i'm getting absolutely nothing.



public class BlockIdentifier extends JavaPlugin 
public void onEnable()
getLogger().info("BlockIdentifier started!");


@EventHandler
public void onInteract(PlayerInteractEvent event)
Action action = event.getAction();
Player player = event.getPlayer();
Block block = event.getClickedBlock();

if(action.equals(Action.LEFT_CLICK_BLOCK))
player.sendMessage(block.getType().toString());




public void onDisable()
getLogger().info("BlockIdentifier stopped!");











share|improve this question






























    2















    I'm attempting to get the block type that is right clicked by the player and return it back as a message sent to the player in-game. Currently i'm getting absolutely nothing.



    public class BlockIdentifier extends JavaPlugin 
    public void onEnable()
    getLogger().info("BlockIdentifier started!");


    @EventHandler
    public void onInteract(PlayerInteractEvent event)
    Action action = event.getAction();
    Player player = event.getPlayer();
    Block block = event.getClickedBlock();

    if(action.equals(Action.LEFT_CLICK_BLOCK))
    player.sendMessage(block.getType().toString());




    public void onDisable()
    getLogger().info("BlockIdentifier stopped!");











    share|improve this question


























      2












      2








      2








      I'm attempting to get the block type that is right clicked by the player and return it back as a message sent to the player in-game. Currently i'm getting absolutely nothing.



      public class BlockIdentifier extends JavaPlugin 
      public void onEnable()
      getLogger().info("BlockIdentifier started!");


      @EventHandler
      public void onInteract(PlayerInteractEvent event)
      Action action = event.getAction();
      Player player = event.getPlayer();
      Block block = event.getClickedBlock();

      if(action.equals(Action.LEFT_CLICK_BLOCK))
      player.sendMessage(block.getType().toString());




      public void onDisable()
      getLogger().info("BlockIdentifier stopped!");











      share|improve this question
















      I'm attempting to get the block type that is right clicked by the player and return it back as a message sent to the player in-game. Currently i'm getting absolutely nothing.



      public class BlockIdentifier extends JavaPlugin 
      public void onEnable()
      getLogger().info("BlockIdentifier started!");


      @EventHandler
      public void onInteract(PlayerInteractEvent event)
      Action action = event.getAction();
      Player player = event.getPlayer();
      Block block = event.getClickedBlock();

      if(action.equals(Action.LEFT_CLICK_BLOCK))
      player.sendMessage(block.getType().toString());




      public void onDisable()
      getLogger().info("BlockIdentifier stopped!");








      java minecraft bukkit






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 29 at 17:19









      Draco18s

      12k3 gold badges24 silver badges42 bronze badges




      12k3 gold badges24 silver badges42 bronze badges










      asked Mar 26 at 4:56









      ThernandezThernandez

      112 bronze badges




      112 bronze badges






















          2 Answers
          2






          active

          oldest

          votes


















          2














          As well as doing what Darkilen suggested (implementing Listener) you need to register your events/listener in your onEnable using:



          getServer().getPluginManager().registerEvents​(Listener listener, Plugin plugin)


          For your case, this would look like:



          public void onEnable()
          getLogger().info("BlockIdentifier started!");
          getServer().getPluginManager().registerEvents(this, this);






          share|improve this answer






























            1














            You forgot to implements Listener :



            public class BlockIdentifier extends JavaPlugin implements Listener






            share|improve this answer

























              Your Answer






              StackExchange.ifUsing("editor", function ()
              StackExchange.using("externalEditor", function ()
              StackExchange.using("snippets", function ()
              StackExchange.snippets.init();
              );
              );
              , "code-snippets");

              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "1"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350094%2fhow-to-return-block-type-in-a-message-for-spigot-1-13-2%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              As well as doing what Darkilen suggested (implementing Listener) you need to register your events/listener in your onEnable using:



              getServer().getPluginManager().registerEvents​(Listener listener, Plugin plugin)


              For your case, this would look like:



              public void onEnable()
              getLogger().info("BlockIdentifier started!");
              getServer().getPluginManager().registerEvents(this, this);






              share|improve this answer



























                2














                As well as doing what Darkilen suggested (implementing Listener) you need to register your events/listener in your onEnable using:



                getServer().getPluginManager().registerEvents​(Listener listener, Plugin plugin)


                For your case, this would look like:



                public void onEnable()
                getLogger().info("BlockIdentifier started!");
                getServer().getPluginManager().registerEvents(this, this);






                share|improve this answer

























                  2












                  2








                  2







                  As well as doing what Darkilen suggested (implementing Listener) you need to register your events/listener in your onEnable using:



                  getServer().getPluginManager().registerEvents​(Listener listener, Plugin plugin)


                  For your case, this would look like:



                  public void onEnable()
                  getLogger().info("BlockIdentifier started!");
                  getServer().getPluginManager().registerEvents(this, this);






                  share|improve this answer













                  As well as doing what Darkilen suggested (implementing Listener) you need to register your events/listener in your onEnable using:



                  getServer().getPluginManager().registerEvents​(Listener listener, Plugin plugin)


                  For your case, this would look like:



                  public void onEnable()
                  getLogger().info("BlockIdentifier started!");
                  getServer().getPluginManager().registerEvents(this, this);







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Apr 1 at 4:26









                  Rishaan GuptaRishaan Gupta

                  4163 silver badges15 bronze badges




                  4163 silver badges15 bronze badges























                      1














                      You forgot to implements Listener :



                      public class BlockIdentifier extends JavaPlugin implements Listener






                      share|improve this answer



























                        1














                        You forgot to implements Listener :



                        public class BlockIdentifier extends JavaPlugin implements Listener






                        share|improve this answer

























                          1












                          1








                          1







                          You forgot to implements Listener :



                          public class BlockIdentifier extends JavaPlugin implements Listener






                          share|improve this answer













                          You forgot to implements Listener :



                          public class BlockIdentifier extends JavaPlugin implements Listener







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Mar 27 at 14:08









                          DarkilenDarkilen

                          1396 bronze badges




                          1396 bronze badges



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350094%2fhow-to-return-block-type-in-a-message-for-spigot-1-13-2%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                              Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                              Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript