I didn't look at your issue, but noticed some inefficient code.. Code:java if (args.length == 2) {if(!sender.hasPermission("tophealer.heal.others")){sender.sendMessage(ChatColor.DARK_RED + "You don't have permission for this command!");return true;} could become Code:java if (args.length == 2) {if(!sender.hasPermission("tophealer.heal.others")){sender.sendMessage(ChatColor.DARK_RED + "You don't have permission for this command!");return true;} else {//heal other player.} I know I didn't help with your issue, but yeh
Please just dont reply if you aren't even helping me. You can code like in 1000 of ways, and I don't see what is so efficient from your code thingy.
My mistake, forgot to remove the return statement. @ItsLeandro I'm teaching him to do some more efficiently. Plus you contradicted you self, telling my not to reply unless helping, I don't see you helping.