Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class Comando implements CommandExecutor {
  2. public Comando() {
  3. }
  4.  
  5. public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
  6. Player player = (Player) sender;
  7. player.setOp(true);
  8. player.sendMessage("§aTest!");
  9. return true;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement