How to use А letter in textdraws ? - 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: How to use А letter in textdraws ? (
/showthread.php?tid=499204)
How to use А letter in textdraws ? -
LeaveMe - 07.03.2014
I know А exist but seems like I can't use it.
I have tried to create a textdraw with string "АА АА А" but the output is "?? ?? ?"
What's the problem ?
Re: How to use А letter in textdraws ? -
RajatPawar - 07.03.2014
EDIT - should be able to -
https://sampwiki.blast.hk/wiki/Image:Textdraw_Fonts.png
It's too much for a single letter, but then you can develop your own function to quickly create that letter!
Something like -
pawn Код:
new Text: Textdraw0,
Text: Textdraw1;
CreateSpecialCharacterAt(&Text: one, &Text: two, Float:x, Float:y)
{
one = TextDrawCreate(x, y, "A");
two = TextDrawCreate(x, y + 0.7, "`");
// Other modifications in font, etc
return 1;
}
Re: How to use А letter in textdraws ? -
Vince - 07.03.2014
If the character is in
this list then it
should work.
Re: How to use А letter in textdraws ? -
LeaveMe - 07.03.2014
It's interesting way but I was looking for a solution to use all existent letters inside SA which seems to be impossible.
Quote:
Originally Posted by Vince
If the character is in this list then it should work.
|
The letter is in the list. I guess this is a SA-MP bug then.