Count team kills
#2

Alright, for example we have team 1 & team 2

we will create a variable to store the kills in
Код:
new Team1Kills = 0;
new Team2Kills = 0;
Then as it's a war server, it should increase the team kills after a member of the team kills a member of the other team
so we will use
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    return1;
}
So here we go:
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    if(GetPlayerTeam(killerid) == 1) // Checks if the killer is in team 1
    {
        // if the killer in team 1 it will increase the Team1Kills by 1
        Team1Kills = Team1Kills + 1; // or you can use "Team1Kills += 1;
    }
    else if(GetPlayerTeam(killerid) == 2) // Checks if the killer is in team 2
    {
        // if the killer in team 2 it will increase the Team2Kills by 1
        Team2Kills = Team2Kills + 1; // or you can use "Team2Kills += 1;
    }
    return1;
}
Not really good one, but yeah, good for an example
Reply


Messages In This Thread
Count team kills - by SalmaN97 - 16.08.2015, 00:14
Re: Count team kills - by UnDetectable - 16.08.2015, 01:03
Re: Count team kills - by SalmaN97 - 16.08.2015, 07:38
Re: Count team kills - by iTakelot - 16.08.2015, 10:10
Re: Count team kills - by SalmaN97 - 17.08.2015, 07:15
Re: Count team kills - by SalmaN97 - 17.08.2015, 12:37
Re: Count team kills - by SalmaN97 - 18.08.2015, 05:50

Forum Jump:


Users browsing this thread: 1 Guest(s)