Hello, I went crazy with this issue... Hope you can help me. I have this: Code: @EventHandler(priority = EventPriority.NORMAL) public void onPlayerPreLogin(final PlayerPreLoginEvent event) { Bukkit.broadcastMessage("§e1"); } (just simple..) But i dont get "1" in chat... Please help? Other events does work in this class. (PlayerListener)
@escortkeel What do you want to see? The other events in the same class are working. So its not that? And the imports are right...
@escortkeel How do you mean? I have: Code: getServer().getPluginManager().registerEvents(playerListener, this); In the onEnable() method. But I dont understand what you mean?
If you do not run a server in online mode, the pre login event does not fire. Make sure you have internet connectivity on your server.
@Sagacious_Zed Really? Im testing the plugin on an offline mode server! Thats the problem! Thanks i will try!
Different event, fired on a different thread than the main game thread. Also does not fire unless you server is connected to the internet and on online mode.