Disable Stats Padding

Started by W3aPoN^, Mar 17, 2017, 09:20 AM

Previous topic - Next topic

W3aPoN^

hello guys can any one give me script for disabling stats padding in server i am using DNUS server thanks in advance!
=THE END=

Cool

There is a thing called Administration

vito

well one may script a simple statpadding's detector to alert staff. but basically you need to disallow players to join to server with same UID twice, it will help in most of cases (vc-mp players usually have one PC and have no idea about virtual machine).
function onPlayerJoin( player ){
for(local i = 0; i < 100; i++){
local plr = FindPlayer(i);
if(plr){
if(plr.ID != player.ID){
if(plr.UniqueID == player.UniqueID){
KickPlayer(player);
return;
}
}
}
}
}

KAKAN

the hard way: Keep an array of who killing who continuously :)
oh no

EK.IceFlake

Quote from: KAKAN on Mar 17, 2017, 11:49 AMthe hard way: Keep an array of who killing who continuously :)
Try that with stylish against a random noob.

krystianoo

Quote from: EK.IceFlake on Mar 18, 2017, 06:36 AM
Quote from: KAKAN on Mar 17, 2017, 11:49 AMthe hard way: Keep an array of who killing who continuously :)
Try that with stylish against a random noob.

in that situation ur better off checking for speed gear

EK.IceFlake

Quote from: krystianoo on Mar 18, 2017, 09:28 AM
Quote from: EK.IceFlake on Mar 18, 2017, 06:36 AM
Quote from: KAKAN on Mar 17, 2017, 11:49 AMthe hard way: Keep an array of who killing who continuously :)
Try that with stylish against a random noob.

in that situation ur better off checking for speed gear
There is no such thing as speed gear lol, it's EC propaganda.