02.08.2015, 00:31
Helo guys
i have made this code so when the team is capturing when a player leave dynamic area if the count of team is less thean two members then the capture should stop but if its two or more then it should continue
but my problem is that when there is three players if a player leaves the capturing stop for the other two also
thanks in advance
i have made this code so when the team is capturing when a player leave dynamic area if the count of team is less thean two members then the capture should stop but if its two or more then it should continue
but my problem is that when there is three players if a player leaves the capturing stop for the other two also
PHP код:
if(areaid == MariaBeach)
{
if(zUnderAttack[MariaBeach] == 1)
{
new count;
for(new i=0; i< MAX_PLAYERS; i++)
{
if(IsPlayerInDynamicArea(i, MariaBeach) && gTeam[i] == gTeam[playerid])
count++;
if(count == 1)
{
zUnderAttack[MariaBeach] = 0;
GangZoneStopFlashForAll(GangZone[MariaBeach]);
KillTimer(tBarTimer[i]);
KillTimer(ZTimer[i][MariaBeach]);
captureTime[i]= 0;
PlayerTextDrawHide(i, Bar);
SendClientMessage(i, -1,"not enough members turf cancled.");
}
}
}
return 1;
}