12.01.2016, 12:01
BUMP
The same issue. Personal-textdraw drawn over global-textdraw
I tried it. Personal-Textdraws are created in OnPlayerConnect before created global-textdraws
Result:
Result:
The same issue. Personal-textdraw drawn over global-textdraw
Quote:
Textdraws are shown in the order they are created but it would seem you have over lapping textdraws you could write a script to test it in a few minutes.
|
Код:
public OnPlayerConnect(playerid){ ptd[playerid] = CreatePlayerTextDraw(playerid, 207.599960, 116.333419, "_"); ... PlayerTextDrawShow(playerid, ptd[playerid]; // td = TextDrawCreate(200.000000, 110.000000, "LD_PLAN:tvcorn"); ... TextDrawShowForPlayer(playerid, td); return true; }
Код:
public OnPlayerConnect(playerid){ td2 = TextDrawCreate(207.599960, 116.333419, "_"); ... td = TextDrawCreate(200.000000, 110.000000, "LD_PLAN:tvcorn"); ... TextDrawShowForPlayer(playerid, td); TextDrawShowForPlayer(playerid, td2); return true; }