08.09.2013, 12:37
From what I understand, you mean something like:
No, the second part will not be evaluated, this checks if both are true.
You need to do the following:
This will check if one of the cases is true.
Or you can do two "if"s, like the following:
Good luck.
pawn Код:
if(case 1 is false && case 2 is true)
{
}
You need to do the following:
pawn Код:
if(case 1 || case 2)
{
}
Or you can do two "if"s, like the following:
pawn Код:
if(case 1)
{
}
else if(case 2)
{
}