18.01.2010, 17:32
Is there any way to use them in script.
Ex.
CMD
цц(playerid, params[])
Ex.
CMD
цц(playerid, params[])
цц(playerid, params[])
88(playerid, params[]) and player can type it that way /sцц and script detects it as s88... Is that possible :P ?
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;
}