TextDraw Coordonates
#1

What are the coordonates for a textdraw under the money . one just like this

Код:
  Textdraw0 = TextDrawCreate(X,Y,"KnowLedge RPG");
  TextDrawAlignment(Textdraw0,1);
  TextDrawBackgroundColor(Textdraw0,0x000000ff);
  TextDrawFont(Textdraw0,3);
  TextDrawLetterSize(Textdraw0,0.299999,1.000000);
  TextDrawColor(Textdraw0,0x0482FFFF);
  TextDrawSetOutline(Textdraw0,1);
  TextDrawSetProportional(Textdraw0,1);
  TextDrawSetShadow(Textdraw0,1);
Those X,Y i don't know.Thank you
Reply
#2

It uses a 640 x 480 screen res.

So with you wanting the textdraw under the money, you need to go all the way across (640 across, so try 610). The you want it to go a little bit down (480 max, so only set it to about 40).

With textdraws, it's sometimes helps to use trial and error. If too low at 40, use 45. Goodluck.

pawn Код:
TextDrawCreate( 610.0, 40.0, "KnowLedge RPG");
Reply
#3

Thank you.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)