13.02.2013, 16:48
Tolower works with character , you have to set each character of username tolower case separately : LIKE :
For detain see here
https://sampwiki.blast.hk/wiki/Tolower
pawn Code:
for(new i = 0;i < sizeof(username);i++)
{
username[i] = tolower(username[0]);
}
https://sampwiki.blast.hk/wiki/Tolower