how to make a plugin wait on enable

Solutions on MaxInterview for how to make a plugin wait on enable by the best coders in the world

showing results for - "how to make a plugin wait on enable"
Leah
04 Jul 2018
1Bukkit.getScheduler().runTaskLater(main, new Runnable() {
2	public void run() {
3		System.out.println("Plugin has been enabled for 5 seconds!");
4	}
5}, 100L);