SA-MP Forums Archive
Health anti-hack - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Health anti-hack (/showthread.php?tid=253127)



Health anti-hack - Panormitis - 04.05.2011

Guys I need an unlimited health anti-hack , when someone use health hack will automaticly kicked from the server, can someone help me on making this?


Re: Health anti-hack - Ironboy - 04.05.2011

Better you use JunkBuster FS.


Re: Health anti-hack - Stigg - 05.05.2011

http://forum.sa-mp.com/showthread.ph...ght=junkbuster


Re: Health anti-hack - Panormitis - 05.05.2011

Quote:
Originally Posted by Ironboy
Посмотреть сообщение
Better you use JunkBuster FS.
I have a question for that, I have a server with lots of teleports, players can get jetpacks and they can buy weapons through commands, so if they get wepond throught this commands or if they win money from jobs that I added will they get ban?


Re: Health anti-hack - Panormitis - 05.05.2011

Quote:
Originally Posted by Panormitis
Посмотреть сообщение
I have a question for that, I have a server with lots of teleports, players can get jetpacks and they can buy weapons through commands, so if they get wepond throught this commands or if they win money from jobs that I added will they get ban?
?? Answer please? :/


Re: Health anti-hack - [SFA]SpiRRiT - 05.05.2011

Quote:
Originally Posted by Panormitis
Посмотреть сообщение
?? Answer please? :/
Please wait for people to reply themselfs, we got our own lifes aswell you know..
But uhh, it could be that they will be banned, but you can fixed it easily.. Just use sample

pawn Код:
new IsUsingCheatCMD[MAX_PLAYERS]

CMD:getjetpack(playerid,params[])
{
      if(IsUsingCheatCMD[playerid] == 0)
      {
             bla bla bla for making jetpack etc.
             IsUsingCheatCMD = 1;
      }
      else if(IsUsingCheatCMD[playerid] == 1)
      {
             SendClientMessage(playerid, COLOR_RED, "You can only use 1 cheatcmd at a time")
      }
      return 1;
}

public AutoCheaterBan()
{
     if(IsUsingCheatCMD[playerid] == 0)
     {
          bla bla for banning users who hack without a cheatcmd
     }
}