SA-MP Forums Archive
Anti Caps-Look? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Anti Caps-Look? (/showthread.php?tid=64355)



Anti Caps-Look? - MeTaX - 03.02.2009

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?


Re: Anti Caps-Look? - Joe Staff - 03.02.2009

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!


Re: Anti Caps-Look? - mamorunl - 03.02.2009

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


Re: Anti Caps-Look? - Sandra18[NL] - 03.02.2009

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;
}



Re: Anti Caps-Look? - MeTaX - 11.02.2009

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