remove multibox checks for banned
This commit is contained in:
@@ -5184,8 +5184,7 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
|
|
||||||
if (!this.isBoxed && this.timestamps.get("nextBoxCheck") < System.currentTimeMillis()) {
|
if (!this.isBoxed && this.timestamps.get("nextBoxCheck") < System.currentTimeMillis()) {
|
||||||
this.isBoxed = checkIfBoxed(this);
|
this.isBoxed = checkIfBoxed(this);
|
||||||
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000);
|
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000););
|
||||||
KeyCloneAudit.suspectMultibox(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.level < 10 && this.enteredWorld) {
|
if (this.level < 10 && this.enteredWorld) {
|
||||||
|
|||||||
@@ -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();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user