Disabling Cap Keys
#2

Well... You could write a long-ass code:

pawn Код:
new string = //your input
new output
for(new i=0; i<sizeof(string); i++)
{
  if(strcmp(i, "A", true) || strcmp(i, "a", true))
  {
    i = "a"
    new currentoutput = output;
    format(output, sizeof(output) + 1, "%s%s", i, currentoutput);
  }
  if(strcmp(i, "B", true) || strcmp(i, "b", true))
  {
    i = "b"
    new currentoutput = output;
    format(output, sizeof(output) + 1, "%s%s", i, currentoutput);
  }
//etc.
}
string = output;
Reply


Messages In This Thread
Disabling Cap Keys - by xMichaelx - 07.12.2011, 13:32
Re: Disabling Cap Keys - by Rob_Maate - 07.12.2011, 13:43
Re: Disabling Cap Keys - by Sascha - 07.12.2011, 13:43
Re: Disabling Cap Keys - by JamesC - 07.12.2011, 14:10
Re: Disabling Cap Keys - by cessil - 07.12.2011, 14:14
Re: Disabling Cap Keys - by xMichaelx - 07.12.2011, 15:23

Forum Jump:


Users browsing this thread: 2 Guest(s)