27.07.2013, 15:19
My bad i didn't notice const. This should look like this
pawn Код:
stock NickToLower(nick[]) //Just remove const
{
for(new i=0, j=strlen(nick); i<j; i++)
{
nick[i] = tolower(nick[i]);
}
return nick;
}

