28.02.2012, 12:36
Something like this:
This one let only the first letter to be caps, and the other it change it.
How we can change it to let only one, and return a message?
Код:
public OnPlayerText(playerid, text[]) { for(new i=1; i<strlen(text); i++) { if(text[i] > 64 && text[i]< 91) text[i] += 32; } return 1; }
How we can change it to let only one, and return a message?