03.02.2009, 16:12
I'm looking for an anti-caps look script, wich allows only little characters. I have used search, but i found nothing.. can someone give me a script/link to it?
public OnPlayerText(playerid, text[]) { for(new i=1; i<strlen(text); i++) { if(text[i] > 64 && text[i]< 91) text[i] += 32; } return 1; }