Skip to content

Instantly share code, notes, and snippets.

@WouterG
Created February 8, 2020 17:04
Show Gist options
  • Save WouterG/e5f2862bfd56a1814fe95130f60cc2ba to your computer and use it in GitHub Desktop.
Save WouterG/e5f2862bfd56a1814fe95130f60cc2ba to your computer and use it in GitHub Desktop.
Example scripts RuntimeDebugger (1.15.2 compatible)
import net.menoni.rd.RuntimeDebugger;
import net.menoni.rd.model.Debugger;
import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender;
public class example implements Debugger {
public void debug(RuntimeDebugger plugin, CommandSender cs) {
cs.sendMessage(ChatColor.YELLOW + "It works");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment