SA-MP Forums Archive
textdraw always on top - 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: textdraw always on top (/showthread.php?tid=287690)



textdraw always on top - Patchwerk - 04.10.2011

Thanks

Cheers,
Patchwerk


Re: textdraw always on top - Max_Coldheart - 04.10.2011

Maybe you should try changing the coordinates if you want to get it up instead of down?


Re: textdraw always on top - Sasino97 - 04.10.2011

I have the same problem too


Re: textdraw always on top - iPLEOMAX - 04.10.2011

AFAIK, To assign on top property of a textdraw, you must create it at the end/final.
pawn Код:
new Text:TD1;
new Text:TD2;
new Text:TD3;

TD3 = TextDrawCreate(...);
TD1 = TextDrawCreate(...);
//In this case: TD1 is the topmost.
pawn Код:
new Text:TD1;
new Text:TD2;
new Text:TD3;

TD3 = TextDrawCreate(...);
TD2 = TextDrawCreate(...);
//In this case: TD2 is the topmost.



Re: textdraw always on top - Patchwerk - 04.10.2011

Thanks


Re: textdraw always on top - iPLEOMAX - 04.10.2011

pawn Код:
printf("%d",_:t);
What number does it print?


Re: textdraw always on top - Patchwerk - 04.10.2011

Thanks