SA-MP Forums Archive
Encode 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: Encode problem? (/showthread.php?tid=456127)



Encode problem? - Jhon_Night - 04.08.2013

Hello, today i was starting to script my own gamemode starting from new.pwn but i already found a problem if i do this:
Код:
SendClientMessage(playerid, COLOR, "attivitа");
that means activity in italian.. It will output this:
Код:
attivitГ
or something like this.. Please help me.


Re: Encode problem? - CutX - 04.08.2013

idk but maybe it's not supporting these kind of letters (not sure)
but this:
Код:
	new lol = 0224,s[1];
	format(s,sizeof s,"%s",lol);
SendClientMessage(playerid,-1,s);
will actually print a "а"
http://italian.about.com/library/blaccentchart.htm


Re: Encode problem? - Jhon_Night - 04.08.2013

I already have some other scripts with this special characters like а и т м and i haven't got problems with them.


Re: Encode problem? - Jhon_Night - 04.08.2013

/////