SA-MP Forums Archive
Using Ь , Ц , Д in a Server - 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: Using Ь , Ц , Д in a Server (/showthread.php?tid=268091)



Using Ь , Ц , Д in a Server - xXGaryXx - 11.07.2011

Hi people,
is tehre a way to use the following letters: Ь , Ц , Д , Я in a Server? Maybe by special Codes. You often use this letters in german. Thank you for help!

And please look at my other thread 'Car Spawn Problem'


Re: Using Ь , Ц , Д in a Server - Jeffry - 11.07.2011

Hi xXGaryXx,

Try to type them into a string like this:
pawn Код:
new string[128];
format(string, 128, "I try: Д    Ц    Ь   and the small ones: д    ц    ь");
SendClientMessageToAll(COLOR_GREEN, string);
If that does not work, try:

pawn Код:
new string[128];
format(string, 128, "I try: %s    %s    %s   and the small ones: %s    %s    %s", 196, 214, 220, 228, 246, 252);
SendClientMessageToAll(COLOR_GREEN, string);
I hope this helps you.
If you have any other questions just ask.
I hope it works. ^^


Jeffry


Re: Using Ь , Ц , Д in a Server - MicroD - 11.07.2011

Try this:
https://sampforum.blast.hk/showthread.php?tid=223944