цдхь characters.
#1

Is there any way to use them in script.
Ex.
CMDцц(playerid, params[])
Reply
#2

No.
Reply
#3

Then another way...CMD88(playerid, params[]) and player can type it that way /sцц and script detects it as s88... Is that possible :P ?
Reply
#4

I did a little bit of testing.

pawn Код:
public OnRconCommand(cmd[])
{
  new string[256];
  format(string,sizeof(string),cmd);
  print(string);
  for(new ch; ch<strlen(cmd);ch++)
  {
    if(string[ch]=='ц')string[ch]='8';
  }
  print(string);
  return 1;
}
So if I type "poopцц" it should return "poop88", but it actually returns "poop""" with the 2 inner quotation marks. Even when not moving cmd to string, and just doing 'print(cmd);' I get the "poop"""

So I guess it just doesn't work.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)