SA-MP Forums Archive
TextDraw - Not showing - 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 - Not showing (/showthread.php?tid=582223)



TextDraw - Not showing - MotherDucker - 19.07.2015

Hello everyone,
I'm having a problem with my text draw, I don't really use them but I'm pretty sure this is right, I am trying to make a full black screen but nothing shows up.

Код:
loading[playerid] = CreatePlayerTextDraw(playerid, 640, 480, " ");
PlayerTextDrawUseBox(playerid, loading[playerid], 1);
PlayerTextDrawBoxColor(playerid, loading[playerid], BLACK);
PlayerTextDrawColor(playerid, loading[playerid], BLACK);
PlayerTextDrawLetterSize(playerid, loading[playerid], 3.2, 480.0);
PlayerTextDrawShow(playerid, loading[playerid]);



AW: TextDraw - Not showing - Nero_3D - 19.07.2015

I am not sure but try to put at 0.0, 0.0 and maximize all values
pawn Код:
loading[playerid] = CreatePlayerTextDraw(playerid, 0.0, 0.0, "_");
PlayerTextDrawUseBox(playerid, loading[playerid], 1);
PlayerTextDrawBoxColor(playerid, loading[playerid], BLACK);
PlayerTextDrawLetterSize(playerid, loading[playerid], 640.0, 480.0);
PlayerTextDrawTextSize(playerid, loading[playerid], 640.0, 480.0);
PlayerTextDrawShow(playerid, loading[playerid]);
Just use a textdraw editor next time


Re: TextDraw - Not showing - MotherDucker - 19.07.2015

Nope, there was no difference.