16.04.2014, 16:45
Try to do like that:
as example put these codes:
And if it works do it with others textdraws
as example put these codes:
pawn Код:
//On top of your script
new Text:GwTD0;
//Under OnGameModeInit
GwTD0 = CreatePlayerTextDraw(playerid,677.000000, 451.000000, "_");
PlayerTextDrawBackgroundColor(playerid,GwTD0, 255);
PlayerTextDrawFont(playerid,GwTD0, 1);
PlayerTextDrawLetterSize(playerid,GwTD0, 0.500000, -2.549998);
PlayerTextDrawColor(playerid,GwTD0, -1);
PlayerTextDrawSetOutline(playerid,GwTD0, 0);
PlayerTextDrawSetProportional(playerid,GwTD0, 1);
PlayerTextDrawSetShadow(playerid,GwTD0, 1);
PlayerTextDrawUseBox(playerid,GwTD0, 1);
PlayerTextDrawBoxColor(playerid,GwTD0, 84215295);
PlayerTextDrawTextSize(playerid,GwTD0, -23.000000, 0.000000);
//And as example under OnPlayerConnect
TextDrawShowForPlayer(playerid, GwTD0);