Quote:
Originally Posted by BroZeus
use this for declaration-
Код:
new firstname[15],lastname[15];
and condition this--
Код:
if(strlen(firstname)>15)
{
//wahtever u want to do
}
if(strlen(lastname)>15)
{
//wahtever u want to do
}
|
How exactly I should use that? And how script knows what is firstname and what is lastname?