07.03.2014, 06:19
(
Последний раз редактировалось RajatPawar; 07.03.2014 в 07:31.
)
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 -
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;
}