23.04.2013, 11:42
(
Последний раз редактировалось GoldZoroGrab; 11.05.2013 в 11:40.
Причина: i've shown the coordinates
)
Hey Guys....
the problem is after i started using PlayerText for Textdraws that i'm using strings in it, the textdraw string got bugged and is only showing the background of 'DetonateB' textdraw.
image of the textdraw and script:
the problem is after i started using PlayerText for Textdraws that i'm using strings in it, the textdraw string got bugged and is only showing the background of 'DetonateB' textdraw.
image of the textdraw and script:
pawn Код:
new PlayerText: DetonateT[MAX_PLAYERS];
pawn Код:
for(new i=0; i<MAX_PLAYERS; i++)
{
DetonateT[i] = CreatePlayerTextDraw(i, 100.0, 33.0, "_");
DetonateT[i] = PlayerTextDrawLetterSize(i, DetonateT[i], 3.2 ,5.1);
}
pawn Код:
PlayerTextDrawShow(playerid, DetonateT[playerid]);
TextDrawShowForPlayer(playerid, DetonateB);
new str[350];
format(str, sizeof(str), "bla bla bla bla this isn't showing why?");
PlayerTextDrawSetString(playerid, DetonateT[playerid], str);
PlayerTextDrawShow(playerid, DetonateT[playerid]);