Anti Caps-Look?
#1

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?
Reply
#2

Hmm, that seems a little weird don't you think? Allowing ONLY lowercase? Then people couldn't emphasize on words or begin sentences correctly. English grammar power, ACTIVATE!
Reply
#3

if you want it, you can look into nitrosfreeroam, search for it or create something that would replace the whole string. .
Reply
#4

Except for the first character, all caps will be converted to lowercase characters.
Код:
public OnPlayerText(playerid, text[])
{
  for(new i=1; i<strlen(text); i++)
  {
    if(text[i] > 64 && text[i]< 91) text[i] += 32;
  }
  return 1;
}
Reply
#5

Thx all, but i found the answer
L-Admin.
Config -> Anti-caps
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)