Trying to make anti health hack
#7

Quote:
Originally Posted by [uL]Pottus
Посмотреть сообщение
If you have teams set and plan on using teams you will need to make some function hooks and modify how SetPlayerTeam() / GetPlayerTeam() operate so that they set the players to the same team with the native functions but save the team in your script let me know if you need help with that it's pretty easy to do.
I have made teams like this - and it worked it was no teamkilling it's tested:

Код:
#define BLUE_TEAM 1
#define RED_TEAM 2
Код:
public OnPlayerRequestClass(playerid, classid)
{
      //....
      switch(classid)
      {
	    case 0,1,2,3:
	    {
                   //...
                   SetPlayerTeam(playerid,BLUE_TEAM);
            }
            case 4,5,6,7:
	    {
                   //...
                   SetPlayerTeam(playerid,RED_TEAM); 
            }
      }
      return 1;
}
And now I added this to save the team in the script:

Код:
static gTeam[MAX_PLAYERS];
Код:
public OnPlayerRequestClass(playerid, classid)
{
      //....
      switch(classid)
      {
	    case 0,1,2,3:
	    {
                   //...
                   SetPlayerTeam(playerid,BLUE_TEAM);
                   gTeam[playerid] = BLUE_TEAM;
            }
            case 4,5,6,7:
	    {
                   //...
                   SetPlayerTeam(playerid,RED_TEAM); 
                   gTeam[playerid] = RED_TEAM;
            }
      }
      return 1;
}
Reply


Messages In This Thread
Trying to make anti health hack - by Remba031 - 28.03.2014, 22:01
Re: Trying to make anti health hack - by Pottus - 28.03.2014, 22:10
Re: Trying to make anti health hack - by Remba031 - 28.03.2014, 22:21
Re: Trying to make anti health hack - by Pottus - 28.03.2014, 22:45
Re: Trying to make anti health hack - by Remba031 - 28.03.2014, 22:55
Re: Trying to make anti health hack - by Pottus - 28.03.2014, 23:03
Re: Trying to make anti health hack - by Remba031 - 28.03.2014, 23:29
Re: Trying to make anti health hack - by Pottus - 28.03.2014, 23:34
Re: Trying to make anti health hack - by Remba031 - 28.03.2014, 23:40
Re: Trying to make anti health hack - by Pottus - 29.03.2014, 00:02

Forum Jump:


Users browsing this thread: 6 Guest(s)