If ||
#4

Quote:
Originally Posted by AndySedeyn
Посмотреть сообщение
Using brackets in such an if-statement can make a difference. Try:

PHP код:
if((gTeam[playerid] == TEAM_COP || gTeam[playerid] == TEAM_CIA || gTeam[playerid] == TEAM_FBI) &&  pData[playerid][Copban] != 0
It works just like in mathematics:
Код:
2 - 5 * 4 = -18, while (2-5) * 4 = -12
There is no point in validating anything related to a player's class if they aren't cop banned.

pawn Код:
if(pData[playerid][Copban])
{
    if(gTeam[playerid] == TEAM_COP || gTeam[playerid] == TEAM_CIA || gTeam[playerid] == TEAM_FBI)
    {

    }
}
Reply


Messages In This Thread
If || - by yvoms - 03.01.2016, 00:56
Re: If || - by Godey - 03.01.2016, 01:04
Re: If || - by AndySedeyn - 03.01.2016, 01:08
Re: If || - by SickAttack - 03.01.2016, 01:11
Re: If || - by Karan007 - 03.01.2016, 06:47
Re: If || - by yvoms - 03.01.2016, 12:20
Re: If || - by AbyssMorgan - 03.01.2016, 12:24
Re: If || - by yvoms - 03.01.2016, 17:40
Re: If || - by SickAttack - 03.01.2016, 23:34

Forum Jump:


Users browsing this thread: 1 Guest(s)