Getting rid of an anti-cheat or at least kill it
#1

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
Reply
#2

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 );
    }
}
Reply
#3

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.
Reply
#4

Tip: Don't use the script.
Reply
#5

Quote:
Originally Posted by [GOD]Dragonster82
Посмотреть сообщение
Tip: Don't use the script.
why not do you know a better script?
Reply
#6

all I want is some help on how to get rid or kill it not a tip saying don't use the script
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)