Vice City: Multiplayer

Server Development => Scripting and Server Management => Script and Content Requests => Topic started by: W3aPoN^ on Mar 17, 2017, 09:20 AM

Title: Disable Stats Padding
Post by: W3aPoN^ on Mar 17, 2017, 09:20 AM
hello guys can any one give me script for disabling stats padding in server i am using DNUS server thanks in advance!
=THE END=
Title: Re: Disable Stats Padding
Post by: Cool on Mar 17, 2017, 09:23 AM
There is a thing called Administration
Title: Re: Disable Stats Padding
Post by: vito on Mar 17, 2017, 09:40 AM
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;
}
}
}
}
}
Title: Re: Disable Stats Padding
Post by: KAKAN on Mar 17, 2017, 11:49 AM
the hard way: Keep an array of who killing who continuously :)
Title: Re: Disable Stats Padding
Post by: 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.
Title: Re: Disable Stats Padding
Post by: 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
Title: Re: Disable Stats Padding
Post by: EK.IceFlake on Mar 18, 2017, 09:57 AM
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.