Tag Mismatch.. Plese help me out.. (TextDraws) - 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: Tag Mismatch.. Plese help me out.. (TextDraws) (
/showthread.php?tid=414209)
Tag Mismatch.. Plese help me out.. (TextDraws) -
Scrillex - 08.02.2013
So here is the line errors:
pawn Код:
Textdraw4[i] = TextDrawCreate(86.000000, 428.000000, "");//from here
TextDrawAlignment(Textdraw4[i], 2);
TextDrawBackgroundColor(Textdraw4[i], 255);
TextDrawFont(Textdraw4[i], 2);
TextDrawLetterSize(Textdraw4[i],0.280000, 1.100000);
TextDrawColor(Textdraw4[i], -1);
TextDrawSetOutline(Textdraw4[i], 1);
TextDrawSetProportional(Textdraw4[i], 1); //till here tag mismatch
+ I went true all the script with BracketFix BETA and it showed that there isn't a problem with } or {
Re: Tag Mismatch.. Plese help me out.. (TextDraws) -
spedico - 08.02.2013
Tag mismatch = your variable type is invalid.
Show me your variable line where you declare "Textdraw4".
Re: Tag Mismatch.. Plese help me out.. (TextDraws) -
Scrillex - 08.02.2013
new Textdraw4[MAX_PLAYERS];
Re: Tag Mismatch.. Plese help me out.. (TextDraws) -
InfiniTy. - 08.02.2013
pawn Код:
new Text:Textdraw4[MAX_PLAYERS];
Re: Tag Mismatch.. Plese help me out.. (TextDraws) -
Scrillex - 08.02.2013
Big thanks mate worked as charm