07.08.2011, 22:51
When you create the textdraws, make sure you add the Mouse Textdraw at the last part.
Whenever you recreate the textdraw, use Cursor = TextDrawCreate...
Haven't tried it but I guess it should be like this..
pawn Код:
new Text:Cursor;
//OnFSInit:
a = TextDrawCreate(...);
b = TextDrawCreate(...);
c = TextDrawCreate(...);
x = TextDrawCreate(...);
y = TextDrawCreate(...);
z = TextDrawCreate(...);
Cursor = TextDrawCreate(...); //At the last part, this will create it at the top layer of all others.
Haven't tried it but I guess it should be like this..