Getting rid of an anti-cheat or at least kill it - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Getting rid of an anti-cheat or at least kill it (
/showthread.php?tid=296630)
Getting rid of an anti-cheat or at least kill it -
calzo2011 - 12.11.2011
Hi,
am trying to get rid of an anti cheat or at leat kill it but I don't know how to get rid of it and the gamemode is Vortex Roleplay Gamemode (link:
https://sampforum.blast.hk/showthread.php?tid=162379) so if someone can help me plese comment cause I reall do need help here
P.S. if you say not to remove the anti-cheat cause its important am getting a better one put in
Re: Getting rid of an anti-cheat or at least kill it -
Snipa - 12.11.2011
If it bans, add a check for the ban.. such as:
from
pawn Код:
if(GetPlayerWeapon(playerid) == 38)
{
Ban(playerid);
}
to
pawn Код:
if(GetPlayerWeapon( playerid ) == 38 && !IsPlayerAdmin( playerid ) )
{
Ban( playerid );
}
or
pawn Код:
if(GetPlayerWeapon( playerid ) == 38 )
{
if( !IsPlayerAdmin( playerid ) )
{
Ban( playerid );
}
}
Re: Getting rid of an anti-cheat or at least kill it -
Jason_Dino - 12.11.2011
Go to your GTA SA server folder. Open it up. And open up Server.cfg with Wordpad or Notepad. And than search for "Anti-Cheat 1" Switch the 1 to a 0 and it should be deactivated. But to remove it to replace it with a new one. I have no idea about that.
Re: Getting rid of an anti-cheat or at least kill it -
[GOD]Dragonster82 - 12.11.2011
Tip: Don't use the script.
Re: Getting rid of an anti-cheat or at least kill it -
Stefand - 12.11.2011
Quote:
Originally Posted by [GOD]Dragonster82
Tip: Don't use the script.
|
why not do you know a better script?
Re: Getting rid of an anti-cheat or at least kill it -
calzo2011 - 12.11.2011
all I want is some help on how to get rid or kill it not a tip saying don't use the script