06.09.2014, 02:46
if(strlen(inputtext) <6 || strlen(inputtext) >24)
Someone can optimize this code?
Someone can optimize this code?
if (6 < strlen(inputtext) < 24)
|
What do you mean optimize? btw try
pawn Код:
|
if(IceCubeDodoCount > CannaryDodoCount)
if(IceCubeDodoCount > CannaryDodoCount < OtherDudeDodoCount)
, of trying to help, btw I copied from wiki:new
idx = 3;
if (0 < idx < 5)
{
print("idx is greater than 0 and less than 5!");
}
|
Okay, thanks for explaining, m8
, of trying to help, btw I copied from wiki:pawn Код:
|
.
if(!(6 < strlen(inputtext) < 24))