30.07.2012, 01:30
I came across an issue where my textdraw id's where getting messed up and it was causing a bunch of problems, so recently I just started using Player Textdraws, I just had a question, whats the difference between:
And:
I'm getting really confused as if you HAVE TO include the "PlayerText:" tag everytime you gotta edit the textdraw, or does it even matter? And do you gotta also include the tag when you create the textdraw? Like:
Will it fuck up everything if I don't include the "PlayerText:" tag on my player textdraws (when I edit them)?
pawn Код:
new PlayerText:Ok[MAX_PLAYERS];
Ok[playerid] = CreatePlayerTextDraw(playerid, 648.000000, 437.000000, "Box");
PlayerTextDrawShow(playerid, PlayerText:Ok[playerid]);
pawn Код:
new PlayerText:Ok[MAX_PLAYERS];
Ok[playerid] = CreatePlayerTextDraw(playerid, 648.000000, 437.000000, "Box");
PlayerTextDrawShow(playerid, Ok[playerid]);
pawn Код:
new PlayerText:Ok[MAX_PLAYERS];
PlayerText:Ok[playerid] = CreatePlayerTextDraw(playerid, 648.000000, 437.000000, "Box");