Cheating Patch

Comments and suggestions to help improve 10FF.
Post Reply
ClearView
Posts: 3
Joined: Tue Feb 10, 2015 3:29 pm

Cheating Patch

Post by ClearView » Fri Mar 06, 2015 6:49 pm

Hello, I was snooping online about common cheating exercises preformed on 10Ff so I would be able to try to offer patches on minimalizing the actual "Cheating" effect from the operator, and I've came up with one. Christian, if you would like to know what this code does, please email me with the subject named Patch

<script language=JavaScript>
var message="Access has been denied. If you feel you have reached this error by mistake, please contact the site administrator";
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
</script>

Post Reply