22.06.2011, 21:32
I try to explain you the problam -
If I create Text draws in OnPlayerConnect -
And i destroy Check2[playerid], and then create this -
and i do -
it's like i do -
and textdraw that i don't want disappear.
What can I do ? How can I do that the text draw not get the ID of each other ??
Please I beg you try to help, I opened about it alot of threads !
If I create Text draws in OnPlayerConnect -
PHP код:
Check1[playerid] = TextDrawCreate(384.000000, 145.000000, "Welcom To The Server");
TextDrawAlignment(Check1[playerid], 2);
TextDrawBackgroundColor(Check1[playerid], -1);
TextDrawFont(Check1[playerid], 2);
TextDrawLetterSize(Check1[playerid], 0.800000, 4.000000);
TextDrawColor(Check1[playerid], 255);
TextDrawSetOutline(Check1[playerid], 1);
TextDrawSetProportional(Check1[playerid], 1);
PHP код:
Check2[playerid] = TextDrawCreate(288, 420, "checking1");
TextDrawAlignment(Check2[playerid], 2);
TextDrawFont(Check2[playerid], 1);
TextDrawLetterSize(Check2[playerid], 25.0, 25.0);
TextDrawColor(Check2[playerid], black);
TextDrawSetProportional(Check2[playerid], 1);
TextDrawUseBox(Check2[playerid], 1);
TextDrawBackgroundColor(Check2[playerid],black);
TextDrawBoxColor(Check2[playerid],black);
PHP код:
TextDrawHideForPlayer(playerid,Check1[playerid]);
PHP код:
TextDrawHideForPlayer(playerid,Check2[playerid]);
What can I do ? How can I do that the text draw not get the ID of each other ??
Please I beg you try to help, I opened about it alot of threads !