More strikes for auto-kick
Updated MAC kick message
This commit is contained in:
parent
a17c1aca44
commit
c1360c63f0
@ -304,9 +304,9 @@ public class AntiHack extends MiniPlugin
|
||||
out = out.substring(0, out.length() - 2);
|
||||
|
||||
String severity = "";
|
||||
if (total > 6) severity = "Extreme";
|
||||
else if (total > 4) severity = "High";
|
||||
else if (total > 2) severity = "Medium";
|
||||
if (total > 18) severity = "Extreme";
|
||||
else if (total > 12) severity = "High";
|
||||
else if (total > 6) severity = "Medium";
|
||||
else severity = "Low";
|
||||
|
||||
//Send Report
|
||||
@ -322,7 +322,8 @@ public class AntiHack extends MiniPlugin
|
||||
player.kickPlayer(
|
||||
C.cGold + "Mineplex Anti-Cheat" + "\n" +
|
||||
C.cWhite + "You were kicked for suspicious movement." + "\n" +
|
||||
C.cWhite + "Cheating will result in a " + C.cRed + "Permanent Ban" + C.cWhite + "."
|
||||
C.cWhite + "Cheating will result in a " + C.cRed + "Permanent Ban" + C.cWhite + "." + "\n" +
|
||||
C.cWhite + "If you were not cheating, you will not be banned."
|
||||
);
|
||||
|
||||
UtilServer.broadcast(F.main("MAC", player.getName() + " was kicked for suspicious movement."));
|
||||
|
Loading…
Reference in New Issue
Block a user