28.02.2014, 22:47
Add on top
pawn Код:
strlower(string[])
{
for(new i=0; string[i] != EOS; i++)
string[i] = tolower(string[i]);
return string;
}