23.05.2020, 12:49
How to use IF like that
how to put that AND? I need in this IF to all 3 variables to be on 0
PHP Code:
if(x = 0 and y = 0 and z = 0)
{
// my code
}
else if x != 0 sendclientmessage(playerid,-1,"x is not 0");
else if y != 0 sendclientmessage(playerid,-1,"y is not 0");
else if z != 0 sendclientmessage(playerid,-1,"z is not 0");