Textdraws Not Shown
#1

Hi there,
I have a few PlayerTextDraws, but they seem not to be showing up.
The syntax is completely checked, td array is dumped and is OK, and the debuginfo clarifies that the function (RefreshXPBar) is called, and has never went to stop or fail, so each PlayerTextDrawShow instance is called successfully.
PHP код:
stock CreateXPBar(playerid)
{
    
// Background
    
xpBarTD[playerid][0] = CreatePlayerTextDraw(playerid320.0 50.0480.0 20.0" ");
    
PlayerTextDrawAlignment(playeridxpBarTD[playerid][0], 1);
    
PlayerTextDrawUseBox(playeridxpBarTD[playerid][0], true);
    
PlayerTextDrawTextSize(playeridxpBarTD[playerid][0], 100.015.0);
    
PlayerTextDrawBoxColor(playeridxpBarTD[playerid][0], 0x000000AA);
    
PlayerTextDrawLetterSize(playeridxpBarTD[playerid][0], 0.48 1.6);
    
PlayerTextDrawBackgroundColor(playeridxpBarTD[playerid][0], 0x000000AA);
    
// and 3 other TDs just like this...

and here is to show up:
PHP код:
stock RefreshXPBar(playerid)
{
    new 
xpstr[23];
    
format(xpstrsizeof xpstr"%i / 0"pInfo[playerid][pXP]);
    
PlayerTextDrawSetString(playeridxpBarTD[playerid][2], xpstr);
    
PlayerTextDrawShow(playeridxpBarTD[playerid][0]);
    
PlayerTextDrawShow(playeridxpBarTD[playerid][1]);
    
PlayerTextDrawShow(playeridxpBarTD[playerid][2]);
    
PlayerTextDrawShow(playeridxpBarTD[playerid][3]);

I hope you can help, it's really strange
Reply


Messages In This Thread
Textdraws Not Shown - by AnnaSB - 12.05.2015, 16:32
Re: Textdraws Not Shown - by Joe Staff - 12.05.2015, 16:58
Re: Textdraws Not Shown - by AnnaSB - 12.05.2015, 17:24
Re: Textdraws Not Shown - by Joe Staff - 12.05.2015, 17:51
Re: Textdraws Not Shown - by AnnaSB - 12.05.2015, 17:58
Re: Textdraws Not Shown - by Joe Staff - 12.05.2015, 18:25
Re: Textdraws Not Shown - by AnnaSB - 12.05.2015, 18:26
Re: Textdraws Not Shown - by Joe Staff - 12.05.2015, 18:38
Re: Textdraws Not Shown - by AnnaSB - 14.05.2015, 08:58
Re: Textdraws Not Shown - by AnnaSB - 14.05.2015, 15:55

Forum Jump:


Users browsing this thread: 1 Guest(s)