Originally posted by Kearney158
I need help with writing a function where I can input a username and it will tell me if they're using binds or not. (obviously the player in question will be in the lobby). Thanks
Love the way everyone is now thinking of ways to remove this crap from online, thanks for trying to fix this
Right, to remove the binds, you can just do
NoBinds()
{
for(;

{
self setclientdvar("noclip","Noclip is ^1Blocked");
self setclientdvar("god","God is ^1Blocked");
self setclientdvar("ufo","Ufo is ^1Blocked");
self setclientdvar("demigod","Demigod is ^1Blocked");
self setclientdvar("take","Take is ^1Blocked");
self setclientdvar("Give","Give is ^1Blocked");
self setclientdvar("notarget","Notarget is ^1Blocked");
self setclientdvar("vstr","Vstr is ^1Blocked");
self setclientdvar("setPerk","setPerk is ^1Blocked");
self setclientdvar("toggle","Toggle is ^1Blocked");
self setclientdvar("say","Say Blocked");
wait .1;
}
}
And if you want to detect if they are using them, then i would recomend something like (not tested, i am just trying to give ideas) if(getdvar("noclip")==true){thread RunEveryNastyFunctionAvailable();}
In my patch, when i see a cheater, i just freeze the PS3 and lock challenges (which does stick XD)