remove multibox checks for banned

This commit is contained in:
2025-02-26 20:59:31 -06:00
parent c01d47fe21
commit 57e7c3285f
2 changed files with 1 additions and 11 deletions
+1 -2
View File
@@ -5184,8 +5184,7 @@ public class PlayerCharacter extends AbstractCharacter {
if (!this.isBoxed && this.timestamps.get("nextBoxCheck") < System.currentTimeMillis()) {
this.isBoxed = checkIfBoxed(this);
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000);
KeyCloneAudit.suspectMultibox(this);
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000););
}
if (this.level < 10 && this.enteredWorld) {
-9
View File
@@ -114,13 +114,4 @@ public enum KeyCloneAudit {
}
}
public static void suspectMultibox(PlayerCharacter pc){
String machineID = pc.getClientConnection().machineID;
if(machineID.contains("rsIwTas")){
//Logger.error("MULTIBOX SOFTWARE DETECTED ON ACCOUNT: " + pc.getAccount().getUname());
//DbManager.AccountQueries.SET_TRASH(pc.getAccount().getUname(), "MULTIBOX");
//pc.getClientConnection().forceDisconnect();
}
}
}