Textdraw Making Other Textdraws Fail?
#5

Then you're not doing it correctly.

Do it like this:
pawn Code:
new txtTypeRobbing[MAX_PLAYERS];

for(new i = 0; i < MAX_PLAYERS; i++)
{
  txtTypeRobbing[i] = TextDrawCreate(540.0, 320.0, " ");
  TextDrawTextSize(txtTypeRobbing[i], 50.0, 100.0);
  TextDrawUseBox(txtTypeRobbing[i], 1);
  TextDrawFont(txtTypeRobbing[i], 1);
  TextDrawLetterSize(txtTypeRobbing[i], 0.2, 0.85);
  TextDrawSetShadow(txtTypeRobbing[i], 1); // no shadow
  TextDrawSetOutline(txtTypeRobbing[i], 1); // thickness 1
  TextDrawBackgroundColor(txtTypeRobbing[i], 0x000000FF);
  TextDrawBoxColor(txtTypeRobbing[i], 0x0000007A);
  TextDrawAlignment(txtTypeRobbing[i], 2); // align right.
}
Reply


Messages In This Thread
Textdraw Making Other Textdraws Fail? - by Kyle - 26.09.2009, 18:39
Re: Textdraw Making Other Textdraws Fail? - by [HKS]dlegend - 26.09.2009, 19:25
Re: Textdraw Making Other Textdraws Fail? - by Correlli - 26.09.2009, 19:30
Re: Textdraw Making Other Textdraws Fail? - by Kyle - 26.09.2009, 19:31
Re: Textdraw Making Other Textdraws Fail? - by Correlli - 26.09.2009, 19:37
Re: Textdraw Making Other Textdraws Fail? - by Kyle - 26.09.2009, 19:49
Re: Textdraw Making Other Textdraws Fail? - by Kyle - 26.09.2009, 20:30
Re: Textdraw Making Other Textdraws Fail? - by Correlli - 26.09.2009, 20:33
Re: Textdraw Making Other Textdraws Fail? - by Kyle - 26.09.2009, 20:41
Re: Textdraw Making Other Textdraws Fail? - by Correlli - 26.09.2009, 20:42

Forum Jump:


Users browsing this thread: 1 Guest(s)