02.07.2016, 14:06
of course you can example code
PHP код:
new bool:flag=false;
for(new i=0;i<sizeof inputtext;i++)
{
if(inputtext[i]=='@')
{
flag=true;
break;
}
}
if(!flag)
{
//if the inputted string does not have @ do the correspondense
}