SA-MP Forums Archive
zcmd problem - 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)
+--- Thread: zcmd problem (/showthread.php?tid=315238)



zcmd problem - vent - 02.02.2012

Code:
case 'ь','Ь': fixed[i] = 'y';
                case 'х','Х': fixed[i] = '6';
                case 'ц','Ц': fixed[i] = '8';
                case 'д','Д': fixed[i] = '2';
Where should i put this @ zcmd.inc?


Re: zcmd problem - milanosie - 02.02.2012

what must this mean?
This has nothing to do with ZCMD


Re: zcmd problem - vent - 02.02.2012

Well, estonian language has letters like Х,Д,Ц,Ь and zcmd won't work with these.


Re: zcmd problem - Konstantinos - 02.02.2012

Then use english letters for commands and let only the Messages at your language!
pawn Code:
CMD:makemeinenglishletters( playerid, params[ ] )
{
    // Do something here
    SendClientMessage( playerid, -1, "Х,Д,Ц,Ь" );
    return 1;
}



Re: zcmd problem - vent - 02.02.2012

Well, its pretty annoying to users when they are playing in estonian server and can't use estonian commands. But okay.