textdraw always on top
#1

Thanks

Cheers,
Patchwerk
Reply
#2

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

I have the same problem too
Reply
#4

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.
Reply
#5

Thanks
Reply
#6

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

Thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)