Problem with warning 213: tag mismatch - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Problem with warning 213: tag mismatch (
/showthread.php?tid=662991)
Problem with warning 213: tag mismatch -
AssassinSaBalkana - 18.01.2019
So when I compile GameMod its say 10 erros and same is warning 213: tag mismatch this is problem
Код:
Banka[ i ] = TextDrawCreate(588.285949, 116.613403, "0$");
TextDrawLetterSize(Banka[i], 0.177900, 0.627197);
TextDrawAlignment(Banka[i], 1);
TextDrawColor(Banka[i], 8388863);
TextDrawSetShadow(Banka[i], 0);
TextDrawSetOutline(Banka[i], 0);
TextDrawBackgroundColor(Banka[i], 255);
TextDrawFont(Banka[i], 1);
TextDrawSetProportional(Banka[i], 1);
TextDrawSetShadow(Banka[i], 0);
if somebody know resolve please help me.
Re: Problem with warning 213: tag mismatch -
B3x7K - 18.01.2019
PHP код:
new Text:Banka[i];
Banka[i] = TextDrawCreate(588.285949, 116.613403, "0$");
TextDrawLetterSize(Banka[i], 0.177900, 0.627197);
TextDrawAlignment(Banka[i], 1);
TextDrawColor(Banka[i], 8388863);
TextDrawSetShadow(Banka[i], 0);
TextDrawSetOutline(Banka[i], 0);
TextDrawBackgroundColor(Banka[i], 255);
TextDrawFont(Banka[i], 1);
TextDrawSetProportional(Banka[i], 1);
TextDrawSetShadow(Banka[i], 0);
Re: Problem with warning 213: tag mismatch -
AssassinSaBalkana - 18.01.2019
Quote:
Originally Posted by B3x7K
PHP код:
new Text:Banka[i];
Banka[i] = TextDrawCreate(588.285949, 116.613403, "0$");
TextDrawLetterSize(Banka[i], 0.177900, 0.627197);
TextDrawAlignment(Banka[i], 1);
TextDrawColor(Banka[i], 8388863);
TextDrawSetShadow(Banka[i], 0);
TextDrawSetOutline(Banka[i], 0);
TextDrawBackgroundColor(Banka[i], 255);
TextDrawFont(Banka[i], 1);
TextDrawSetProportional(Banka[i], 1);
TextDrawSetShadow(Banka[i], 0);
|
Hi its need to be something like this
Quote:
Zlato[ i ] = CreatePlayerTextDraw(i, 600.000000, 110.680015, "130");
PlayerTextDrawLetterSize(i, Zlato[i], 0.217996, 0.993600);
PlayerTextDrawAlignment(i, Zlato[i], 3);
PlayerTextDrawColor(i, Zlato[i], -1);
PlayerTextDrawSetShadow(i, Zlato[i], 0);
PlayerTextDrawSetOutline(i, Zlato[i], 1);
PlayerTextDrawBackgroundColor(i, Zlato[i], 255);
PlayerTextDrawFont(i, Zlato[i], 2);
PlayerTextDrawSetProportional(i, Zlato[i], 1);
PlayerTextDrawSetShadow(i, Zlato[i], 0);
|
So its need to be PlayerTextDraw but when I try it its say some errors
Re: Problem with warning 213: tag mismatch -
AssassinSaBalkana - 18.01.2019
Quote:
Originally Posted by ******
You've still not said what errors.
|
No error just warring
Re: Problem with warning 213: tag mismatch -
AssassinSaBalkana - 18.01.2019
Its ok guys I slove problem