20.08.2013, 23:04
How to i convert something like AA9909EO to aa9909eo automatically in pwn? Basically turn uppercase letters in a string to lowercase.
new Test[64] = "AA9909EO";
public OnPlayerConnect(playerid)
{
for(new i;i<strlen(Test);i++)
{
Test[i] = tolower(Test[i]);
}
SendClientMessage(playerid,-1,Test); // send you a message (aa9909eo)
return 1;
}